mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Remove all-packages.nix helperFunctions dependency.
This commit is contained in:
parent
ae0471b737
commit
5cdaa7b907
@ -1,5 +1,5 @@
|
||||
{ helperFunctions, mono, pkgconfig }:
|
||||
helperFunctions.runCommand
|
||||
{ runCommand, mono, pkgconfig }:
|
||||
runCommand
|
||||
"dotnetbuildhelpers"
|
||||
{ preferLocalBuild = true; }
|
||||
''
|
||||
|
@ -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 { };
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user