about summary refs log tree commit diff
path: root/pkgs/development/compilers/rust
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2020-03-28 23:49:56 -0400
committerJörg Thalheim <joerg@thalheim.io>2020-03-29 06:36:06 +0100
commitce9bec83dacb092b9da99732ed158878af98157e (patch)
tree9b990cad546c710ddf3f989b84490d262921a6be /pkgs/development/compilers/rust
parentfba171669b13392eb862daa535958341cb2b33e6 (diff)
downloadnixlib-ce9bec83dacb092b9da99732ed158878af98157e.tar
nixlib-ce9bec83dacb092b9da99732ed158878af98157e.tar.gz
nixlib-ce9bec83dacb092b9da99732ed158878af98157e.tar.bz2
nixlib-ce9bec83dacb092b9da99732ed158878af98157e.tar.lz
nixlib-ce9bec83dacb092b9da99732ed158878af98157e.tar.xz
nixlib-ce9bec83dacb092b9da99732ed158878af98157e.tar.zst
nixlib-ce9bec83dacb092b9da99732ed158878af98157e.zip
rustc: remove test-only git dependency
The tests have been disabled for over a year,
and AFAIK `git` was added and is only used for the rustc tests.
Diffstat (limited to 'pkgs/development/compilers/rust')
-rw-r--r--pkgs/development/compilers/rust/rustc.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index 6498c34ce8bb..40de5f61e034 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -1,6 +1,6 @@
 { stdenv, removeReferencesTo, pkgsBuildBuild, pkgsBuildHost, pkgsBuildTarget
 , fetchurl, file, python3
-, llvm_9, darwin, git, cmake, rust, rustPlatform
+, llvm_9, darwin, cmake, rust, rustPlatform
 , pkgconfig, openssl
 , which, libffi
 , withBundledLLVM ? false
@@ -125,7 +125,7 @@ in stdenv.mkDerivation rec {
   dontUseCmakeConfigure = true;
 
   nativeBuildInputs = [
-    file python3 rustPlatform.rust.rustc git cmake
+    file python3 rustPlatform.rust.rustc cmake
     which libffi removeReferencesTo pkgconfig
   ];