mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
cataclysmDDA: filter out things that do not have for{Tiles,Curses} attrs
This commit is contained in:
parent
df76f017f2
commit
109adedd62
@ -19,9 +19,11 @@ let
|
|||||||
if isNull build then
|
if isNull build then
|
||||||
true
|
true
|
||||||
else if build.isTiles then
|
else if build.isTiles then
|
||||||
mod.forTiles
|
mod.forTiles or false
|
||||||
|
else if build.isCurses then
|
||||||
|
mod.forCurses or false
|
||||||
else
|
else
|
||||||
mod.forCurses;
|
false;
|
||||||
in
|
in
|
||||||
|
|
||||||
lib.makeExtensible (_: pkgs')
|
lib.makeExtensible (_: pkgs')
|
||||||
|
Loading…
Reference in New Issue
Block a user