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
|
2024-01-20 21:11:14 +00:00
|
|
|
# Fixes for failing build with GCC 13, remove on updating next release after 0.G
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sources.debian.org/data/main/c/cataclysm-dda/0.G-4/debian/patches/gcc13-dangling-reference-warning.patch";
|
|
|
|
hash = "sha256-9nPbyz49IYBOVHqr7jzCIyS8z/SQgpK4EjEz1fruIPE=";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sources.debian.org/data/main/c/cataclysm-dda/0.G-4/debian/patches/gcc13-cstdint.patch";
|
|
|
|
hash = "sha256-8IBW2OzAHVgEJZoViQ490n37sl31hA55ePuqDL/lil0=";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sources.debian.org/data/main/c/cataclysm-dda/0.G-4/debian/patches/gcc13-keyword-requires.patch";
|
|
|
|
hash = "sha256-8yvHh0YKC7AC/qzia7AZAfMewMC0RiSepMXpOkMXRd8=";
|
|
|
|
})
|
2024-03-22 21:55:27 +00:00
|
|
|
# Fix build w/ glibc-2.39
|
|
|
|
# From https://github.com/BrettDong/Cataclysm-DDA/commit/9b206e2dc969ad79345596e03c3980bd155d2f48
|
|
|
|
./glibc-2.39.diff
|
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;
|
2023-10-20 14:25:48 +00:00
|
|
|
common.meta.maintainers;
|
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
|