move subdirsOf from lib to makefu
This commit is contained in:
parent
d56a907784
commit
e4042e132a
@ -20,10 +20,6 @@ let
|
||||
then lib.lpad n c (c + s)
|
||||
else s;
|
||||
|
||||
subdirsOf = path:
|
||||
lib.mapAttrs (name: _: path + "/${name}")
|
||||
(filterAttrs (_: eq "directory") (readDir path));
|
||||
|
||||
genAttrs' = names: f: listToAttrs (map f names);
|
||||
|
||||
getAttrs = names: set:
|
||||
|
@ -15,6 +15,10 @@ self: super: let
|
||||
override
|
||||
else override;
|
||||
|
||||
subdirsOf = path:
|
||||
mapAttrs (name: _: path + "/${name}")
|
||||
(filterAttrs (_: eq "directory") (readDir path));
|
||||
|
||||
in {
|
||||
alsa-hdspconf = callPackage ./alsa-tools { alsaToolTarget="hdspconf";};
|
||||
alsa-hdspmixer = callPackage ./alsa-tools { alsaToolTarget="hdspmixer";};
|
||||
@ -27,7 +31,6 @@ in {
|
||||
sha256 = "18ddzyh11bywrhzdkzvrl7nvgp5gdb4k1s0zxbz2bkhd14vi72bb";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
// mapAttrs (_: flip callPackage {})
|
||||
|
Loading…
Reference in New Issue
Block a user