Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
callPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
pkgs,
|
|
wrapCDDA,
|
|
attachPkgs,
|
|
tiles ? true,
|
|
debug ? false,
|
|
useXdgDir ? false,
|
|
}:
|
|
|
|
let
|
|
common = callPackage ./common.nix {
|
|
inherit tiles debug useXdgDir;
|
|
};
|
|
|
|
self = common.overrideAttrs (common: rec {
|
|
version = "0.H";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CleverRaven";
|
|
repo = "Cataclysm-DDA";
|
|
tag = "${version}-RELEASE";
|
|
sha256 = "sha256-ZCD5qgqYSX7sS+Tc1oNYq9soYwNUUuWamY2uXfLjGoY=";
|
|
};
|
|
|
|
patches = [
|
|
# fix compilation of the vendored flatbuffers under gcc14
|
|
(fetchpatch {
|
|
name = "fix-flatbuffers-with-gcc14";
|
|
url = "https://github.com/CleverRaven/Cataclysm-DDA/commit/1400b1018ff37196bd24ba4365bd50beb571ac14.patch";
|
|
hash = "sha256-H0jct6lSQxu48eOZ4f8HICxo89qX49Ksw+Xwwtp7iFM=";
|
|
})
|
|
# Unconditionally look for translation files in $out/share/locale
|
|
./locale-path.patch
|
|
];
|
|
|
|
meta = common.meta // {
|
|
changelog = "https://github.com/CleverRaven/Cataclysm-DDA/blob/${version}/data/changelog.txt";
|
|
};
|
|
});
|
|
in
|
|
|
|
attachPkgs pkgs self
|