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
@@ -7,7 +7,7 @@ let
bin2c = stdenv.mkDerivation {
name = "bossa-bin2c";
src = ./bin2c.c;
unpackPhase = "true";
dontUnpack = true;
buildPhase = ''cc $src -o bin2c'';
installPhase = ''mkdir -p $out/bin; cp bin2c $out/bin/'';
};