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
, src
, platform
@@ -18,8 +18,6 @@ let
in
rec {
inherit buildRustPackage;
rustc = stdenv.mkDerivation rec {
name = "rustc-${versionType}-${version}";
@@ -37,6 +37,5 @@ let
in callPackage ./binaryBuild.nix
{ inherit version src platform;
buildRustPackage = null;
versionType = "bootstrap";
}