Remove all-packages.nix helperFunctions dependency.

This commit is contained in:
Nicolas B. Pierron 2016-03-20 16:41:20 +00:00
parent ae0471b737
commit 5cdaa7b907
3 changed files with 5 additions and 7 deletions

View file

@ -1,5 +1,5 @@
{ helperFunctions, mono, pkgconfig }:
helperFunctions.runCommand
{ runCommand, mono, pkgconfig }:
runCommand
"dotnetbuildhelpers"
{ preferLocalBuild = true; }
''

View file

@ -1,6 +1,6 @@
{ system, bootStdenv, noSysDirs, gccWithCC, gccWithProfiling
, config, crossSystem, platform, lib
, pkgsWithOverrides, stdenvAdapters, helperFunctions
, pkgsWithOverrides, stdenvAdapters
, ... }:
self: pkgs:
@ -151,9 +151,7 @@ in
dotnetfx = dotnetfx40;
};
dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers {
inherit helperFunctions;
};
dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers { };
dispad = callPackage ../tools/X11/dispad { };

View file

@ -123,7 +123,7 @@ let
stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs;
selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters helperFunctions; };
selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters; };
self = (import ./all-packages.nix selfArgs) self pkgs;
aliases = import ./aliases.nix self;