rust: Remove unused buildRustPackage from binaryBuild.nix

This commit is contained in:
Jörg Thalheim
2018-12-18 06:07:57 +01:00
parent 515a0f53e4
commit 84557733f7
2 changed files with 1 additions and 4 deletions
@@ -1,4 +1,4 @@
{ stdenv, makeWrapper, bash, buildRustPackage, curl, darwin { stdenv, makeWrapper, bash, curl, darwin
, version , version
, src , src
, platform , platform
@@ -18,8 +18,6 @@ let
in in
rec { rec {
inherit buildRustPackage;
rustc = stdenv.mkDerivation rec { rustc = stdenv.mkDerivation rec {
name = "rustc-${versionType}-${version}"; name = "rustc-${versionType}-${version}";
@@ -37,6 +37,5 @@ let
in callPackage ./binaryBuild.nix in callPackage ./binaryBuild.nix
{ inherit version src platform; { inherit version src platform;
buildRustPackage = null;
versionType = "bootstrap"; versionType = "bootstrap";
} }