about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2019-11-09 00:21:23 +0100
committerJon <jonringer@users.noreply.github.com>2019-11-09 10:38:30 -0800
commit518b5c1ae4bca8ee93b5e709d499061e625c0643 (patch)
tree3971637948233fdb65ab645d7789efd43a4e73f4 /pkgs/development/tools/rust
parentf302f023800d111c7ca3066b2a05e95601ab4501 (diff)
downloadnixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.tar
nixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.tar.gz
nixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.tar.bz2
nixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.tar.lz
nixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.tar.xz
nixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.tar.zst
nixlib-518b5c1ae4bca8ee93b5e709d499061e625c0643.zip
rustracerd: fix build
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/racerd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/rust/racerd/default.nix b/pkgs/development/tools/rust/racerd/default.nix
index a665b466ef4e..9457a08556af 100644
--- a/pkgs/development/tools/rust/racerd/default.nix
+++ b/pkgs/development/tools/rust/racerd/default.nix
@@ -19,8 +19,8 @@ buildRustPackage rec {
 
   cargoSha256 = "07130587drrdkrk7aqb8pl8i3p485qr6xh1m86630ydlnb9z6s6i";
 
-  buildInputs = [ makeWrapper ]
-                ++ stdenv.lib.optional stdenv.isDarwin Security;
+  nativeBuildInputs = [ makeWrapper ];
+  buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
 
   RUST_SRC_PATH = rustPlatform.rustcSrc;