1213: nix; fix buildInputs arr

This commit is contained in:
Horki 2020-10-25 19:13:12 +01:00 committed by David Peter
parent 0a9744ac95
commit 8348c1b746
2 changed files with 6 additions and 6 deletions

View File

@ -9,9 +9,9 @@
 src = ./;
 buildInputs = {
 buildInputs = [
 gzip
 bzip2
 python27
 };
 bzip2
 python27
 ];
}

View File

@ -9,9 +9,9 @@ stdenv.mkDerivation rec {
src = ./;
buildInputs = {
buildInputs = [
gzip
bzip2
python27
};
];
}