nixpkgs/pkgs/test/patch-shebangs/default.nix

27 lines
620 B
Nix
Raw Normal View History

2021-01-24 00:40:18 +00:00
{ lib, stdenv, runCommand }:
let
bad-shebang = stdenv.mkDerivation {
name = "bad-shebang";
2019-06-19 15:45:34 +00:00
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
echo "#!/bin/sh" > $out/bin/test
echo "echo -n hello" >> $out/bin/test
chmod +x $out/bin/test
'';
};
in runCommand "patch-shebangs-test" {
passthru = { inherit bad-shebang; };
2021-01-24 00:40:18 +00:00
meta.platforms = lib.platforms.all;
} ''
printf "checking whether patchShebangs works properly... ">&2
if ! grep -q '^#!/bin/sh' ${bad-shebang}/bin/test; then
echo "yes" >&2
touch $out
else
echo "no" >&2
exit 1
fi
2019-06-19 15:45:34 +00:00
''