nixpkgs/pkgs/games/cataclysm-dda/stable.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.1 KiB
Nix
Raw Normal View History

2022-09-13 16:51:37 +00:00
{ lib
, callPackage
, CoreFoundation
, fetchFromGitHub
, fetchpatch
, pkgs
, wrapCDDA
, attachPkgs
, tiles ? true
, Cocoa
, debug ? false
, useXdgDir ? false
}:
let
common = callPackage ./common.nix {
inherit CoreFoundation tiles Cocoa debug useXdgDir;
};
self = common.overrideAttrs (common: rec {
version = "0.G";
src = fetchFromGitHub {
owner = "CleverRaven";
repo = "Cataclysm-DDA";
rev = version;
sha256 = "sha256-Hda0dVVHNeZ8MV5CaCbSpdOCG2iqQEEmXdh16vwIBXk=";
};
patches = [
# Unconditionally look for translation files in $out/share/locale
./locale-path.patch
];
2021-08-18 22:52:26 +00:00
makeFlags = common.makeFlags ++ [
2021-11-29 21:04:42 +00:00
# Makefile declares version as 0.F, with no minor release number
2021-08-18 22:52:26 +00:00
"VERSION=${version}"
];
env.NIX_CFLAGS_COMPILE = toString [
2022-12-23 16:57:29 +00:00
# Needed with GCC 12
"-Wno-error=array-bounds"
];
2020-04-09 07:11:51 +00:00
meta = common.meta // {
maintainers = with lib.maintainers;
2022-09-13 16:51:37 +00:00
common.meta.maintainers ++ [ skeidel ];
changelog = "https://github.com/CleverRaven/Cataclysm-DDA/blob/${version}/data/changelog.txt";
};
});
in
attachPkgs pkgs self