treewide: use dontUnpack

This commit is contained in:
worldofpeace
2019-07-01 04:23:51 -04:00
parent b10e462404
commit 3f4a353737
84 changed files with 92 additions and 92 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
let
bad-shebang = stdenv.mkDerivation {
name = "bad-shebang";
unpackPhase = ":";
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
echo "#!/bin/sh" > $out/bin/test
@@ -23,4 +23,4 @@ in runCommand "patch-shebangs-test" {
echo "no" >&2
exit 1
fi
''
''