summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-09-15 08:31:29 +0100
committerGitHub <noreply@github.com>2018-09-15 08:31:29 +0100
commitf83a26291fcef25609796110f0cdd76b7d02942a (patch)
treef10a2868455377ac633b13bf1c3516fa67f85d18 /pkgs/top-level/all-packages.nix
parent0bfdab21cf69f823b6fe647192bb063a93618fc2 (diff)
parentfc5e5950031d8af57f8b5b9e55187f3e4cb4f063 (diff)
downloadnixlib-f83a26291fcef25609796110f0cdd76b7d02942a.tar
nixlib-f83a26291fcef25609796110f0cdd76b7d02942a.tar.gz
nixlib-f83a26291fcef25609796110f0cdd76b7d02942a.tar.bz2
nixlib-f83a26291fcef25609796110f0cdd76b7d02942a.tar.lz
nixlib-f83a26291fcef25609796110f0cdd76b7d02942a.tar.xz
nixlib-f83a26291fcef25609796110f0cdd76b7d02942a.tar.zst
nixlib-f83a26291fcef25609796110f0cdd76b7d02942a.zip
Merge pull request #46210 from andir/build-rust-crate-changes
buildRustCrate: add heuristic to picking the right binary source files
Diffstat (limited to 'pkgs/top-level/all-packages.nix')
-rw-r--r--pkgs/top-level/all-packages.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f029e22d99ff..521def20cfd6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7179,7 +7179,8 @@ with pkgs;
     });
   inherit (rust) cargo rustc;
 
-  buildRustCrate = callPackage ../build-support/rust/build-rust-crate.nix { };
+  buildRustCrate = callPackage ../build-support/rust/build-rust-crate { };
+  buildRustCrateTests = recurseIntoAttrs (callPackage ../build-support/rust/build-rust-crate/test { }).tests;
 
   cargo-vendor = callPackage ../build-support/rust/cargo-vendor { };