2022-09-13 16:51:37 +00:00
|
|
|
{ lib
|
|
|
|
, callPackage
|
|
|
|
, CoreFoundation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, pkgs
|
|
|
|
, wrapCDDA
|
|
|
|
, attachPkgs
|
|
|
|
, tiles ? true
|
|
|
|
, Cocoa
|
2020-04-08 01:46:57 +00:00
|
|
|
, debug ? false
|
2020-04-09 08:16:25 +00:00
|
|
|
, useXdgDir ? false
|
2020-04-08 01:46:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
common = callPackage ./common.nix {
|
2020-04-09 08:16:25 +00:00
|
|
|
inherit CoreFoundation tiles Cocoa debug useXdgDir;
|
2020-04-08 01:46:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
self = common.overrideAttrs (common: rec {
|
2023-03-01 18:51:06 +00:00
|
|
|
version = "0.G";
|
2020-04-08 01:46:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "CleverRaven";
|
|
|
|
repo = "Cataclysm-DDA";
|
|
|
|
rev = version;
|
2023-03-01 18:51:06 +00:00
|
|
|
sha256 = "sha256-Hda0dVVHNeZ8MV5CaCbSpdOCG2iqQEEmXdh16vwIBXk=";
|
2020-04-08 01:46:57 +00:00
|
|
|
};
|
|
|
|
|
2022-08-13 22:00:04 +00:00
|
|
|
patches = [
|
|
|
|
# Unconditionally look for translation files in $out/share/locale
|
2023-03-01 18:51:06 +00:00
|
|
|
./locale-path.patch
|
2022-08-13 22:00:04 +00:00
|
|
|
];
|
|
|
|
|
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}"
|
|
|
|
];
|
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
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 ];
|
2023-03-01 18:51:06 +00:00
|
|
|
changelog = "https://github.com/CleverRaven/Cataclysm-DDA/blob/${version}/data/changelog.txt";
|
2020-04-08 01:46:57 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
in
|
|
|
|
|
2020-11-12 01:48:19 +00:00
|
|
|
attachPkgs pkgs self
|