mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
Avoid top-level with ...;
in pkgs/development/compilers/dotnet/combine-deps.nix
This commit is contained in:
parent
f12b900550
commit
273a1531d2
@ -4,11 +4,22 @@
|
|||||||
otherRids,
|
otherRids,
|
||||||
pkgs ? import ../../../.. {}
|
pkgs ? import ../../../.. {}
|
||||||
}:
|
}:
|
||||||
with pkgs.lib;
|
|
||||||
let
|
let
|
||||||
inherit (pkgs) writeText;
|
inherit (pkgs) writeText;
|
||||||
|
|
||||||
|
inherit (pkgs.lib)
|
||||||
|
concatMap
|
||||||
|
concatMapStringsSep
|
||||||
|
generators
|
||||||
|
optionals
|
||||||
|
replaceStrings
|
||||||
|
sortOn
|
||||||
|
strings
|
||||||
|
unique
|
||||||
|
;
|
||||||
|
|
||||||
fns = map (file: import file) list;
|
fns = map (file: import file) list;
|
||||||
|
|
||||||
packages = unique
|
packages = unique
|
||||||
(concatMap (fn: fn { fetchNuGet = package: package; }) fns);
|
(concatMap (fn: fn { fetchNuGet = package: package; }) fns);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user