1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/games/cataclysm-dda/default.nix

23 lines
530 B
Nix
Raw Normal View History

2020-04-04 18:45:45 +01:00
{ stdenv, callPackage, CoreFoundation
2019-05-02 17:29:07 +01:00
, tiles ? true, Cocoa
, debug ? false
}:
let
2019-05-02 17:50:40 +01:00
inherit (callPackage ./common.nix { inherit tiles CoreFoundation Cocoa debug; }) common utils;
inherit (utils) fetchFromCleverRaven;
in
stdenv.mkDerivation (common // rec {
2020-07-16 19:49:10 +01:00
version = "0.E-2";
2015-08-06 22:04:44 +01:00
src = fetchFromCleverRaven {
2019-09-09 00:38:31 +01:00
rev = version;
2020-07-16 19:49:10 +01:00
sha256 = "15l6w6lxays7qmsv0ci2ry53asb9an9dh7l7fc13256k085qcg68";
2015-08-06 22:04:44 +01:00
};
meta = with stdenv.lib.maintainers; common.meta // {
maintainers = common.meta.maintainers ++ [ skeidel ];
2015-08-06 22:04:44 +01:00
};
})