aboutsummaryrefslogtreecommitdiff
path: root/pkgs/build-support/fetchrepoproject
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-09 15:36:14 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-09 20:14:46 -0500
commit3d59b4d285fa3207af8fc9378da87c1dd8c42d0d (patch)
tree49962113bda5f1e2384ad55afa6fc4b93b184433 /pkgs/build-support/fetchrepoproject
parentc98e6b67710c7c04ddab56cb09a14540e6668dbc (diff)
treewide: Fixed output fetch* derivations should use `nativeBuildInputs`
Diffstat (limited to 'pkgs/build-support/fetchrepoproject')
-rw-r--r--pkgs/build-support/fetchrepoproject/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/fetchrepoproject/default.nix b/pkgs/build-support/fetchrepoproject/default.nix
index 199c029d3b64..85c64550d686 100644
--- a/pkgs/build-support/fetchrepoproject/default.nix
+++ b/pkgs/build-support/fetchrepoproject/default.nix
@@ -44,7 +44,7 @@ in stdenv.mkDerivation {
"GIT_PROXY_COMMAND" "SOCKS_SERVER"
];
- buildInputs = [ gitRepo cacert ];
+ nativeBuildInputs = [ gitRepo cacert ];
GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";