ae3b4655a4
Carnix: splits input into two parts: creates from creates.io and local ones
25 lines
956 B
Nix
25 lines
956 B
Nix
{stdenv, lib}:
|
|
{
|
|
kernel = stdenv.hostPlatform.parsed.kernel.name;
|
|
abi = stdenv.hostPlatform.parsed.abi.name;
|
|
updateFeatures = f: up: functions: builtins.deepSeq f (lib.lists.foldl' (features: fun: fun features) (lib.attrsets.recursiveUpdate f up) functions);
|
|
mapFeatures = features: map (fun: fun { features = features; });
|
|
mkFeatures = feat: lib.lists.foldl (features: featureName:
|
|
if feat.${featureName} or false then
|
|
[ featureName ] ++ features
|
|
else
|
|
features
|
|
) [] (builtins.attrNames feat);
|
|
include = includedFiles: src: builtins.filterSource (path: type:
|
|
lib.lists.any (f:
|
|
let p = toString (src + ("/" + f)); in
|
|
(path == p) || (type == "directory" && lib.strings.hasPrefix path p)
|
|
) includedFiles
|
|
) src;
|
|
exclude = excludedFiles: src: builtins.filterSource (path: type:
|
|
lib.lists.all (f:
|
|
!lib.strings.hasPrefix (toString (src + ("/" + f))) path
|
|
) excludedFiles
|
|
) src;
|
|
}
|