treewide: Fixed output fetch* derivations should use nativeBuildInputs

This commit is contained in:
John Ericson
2018-01-09 20:14:46 -05:00
parent c98e6b6771
commit 3d59b4d285
16 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ stdenv.mkDerivation {
inherit name;
builder = ./builder.sh;
fetcher = "${./nix-prefetch-git}"; # This must be a string to ensure it's called with bash.
buildInputs = [git];
nativeBuildInputs = [git];
outputHashAlgo = "sha256";
outputHashMode = "recursive";
+1 -1
View File
@@ -17,7 +17,7 @@
in builtins.toString sshConfigFile}'';
ssh-wrapped = runCommand "fetchgit-ssh" {
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
} ''
mkdir -p $out/bin
makeWrapper ${openssh}/bin/ssh $out/bin/ssh --prefix PATH : "$out/bin" --add-flags "-F ${config}" "$@"