cataclysm-dda{,-git}: clean up

This commit is contained in:
Mitsuhiro Nakamura
2020-07-18 14:23:22 +09:00
parent 90c265275f
commit de56294e57
3 changed files with 103 additions and 105 deletions
+4 -3
View File
@@ -5,7 +5,7 @@
let
common = callPackage ./common.nix {
inherit tiles CoreFoundation Cocoa debug;
inherit CoreFoundation tiles Cocoa debug;
};
self = common.overrideAttrs (common: rec {
@@ -23,8 +23,9 @@ let
withMods = wrapCDDA self;
};
meta = with lib.maintainers; common.meta // {
maintainers = common.meta.maintainers ++ [ skeidel ];
meta = common.meta // {
maintainers = with lib.maintainers;
common.meta.maintainers ++ [ skeidel ];
};
});
in