rust: Remove unused buildRustPackage from binaryBuild.nix

This commit is contained in:
Jörg Thalheim 2018-11-21 01:47:45 +00:00
parent 515a0f53e4
commit 84557733f7
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 1 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, makeWrapper, bash, buildRustPackage, curl, darwin
{ stdenv, makeWrapper, bash, curl, darwin
, version
, src
, platform
@ -18,8 +18,6 @@ let
in
rec {
inherit buildRustPackage;
rustc = stdenv.mkDerivation rec {
name = "rustc-${versionType}-${version}";

View file

@ -37,6 +37,5 @@ let
in callPackage ./binaryBuild.nix
{ inherit version src platform;
buildRustPackage = null;
versionType = "bootstrap";
}