mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
88a969d1b7
This is currently failing but nobody noticed!
26 lines
622 B
Nix
26 lines
622 B
Nix
{ stdenv, runCommand }:
|
|
|
|
let
|
|
bad-shebang = stdenv.mkDerivation {
|
|
name = "bad-shebang";
|
|
unpackPhase = ":";
|
|
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; };
|
|
meta.platforms = stdenv.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
|
|
'' |