tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cataclysmDDA: refactoring
Mitsuhiro Nakamura
5 years ago
19deef39
109adedd
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
games
cataclysm-dda
pkgs
default.nix
+2
-2
pkgs/games/cataclysm-dda/pkgs/default.nix
···
13
};
14
};
15
16
-
pkgs' = lib.mapAttrs (_: mod: lib.filterAttrs availableForBuild mod) pkgs;
17
18
-
availableForBuild = _: mod:
19
if isNull build then
20
true
21
else if build.isTiles then
···
13
};
14
};
15
16
+
pkgs' = lib.mapAttrs (_: mods: lib.filterAttrs isAvailable mods) pkgs;
17
18
+
isAvailable = _: mod:
19
if isNull build then
20
true
21
else if build.isTiles then