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

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

55 lines
1.3 KiB
Nix
Raw Normal View History

2022-09-13 18:51:37 +02: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 {
2021-11-29 22:04:42 +01:00
version = "0.F-3";
src = fetchFromGitHub {
owner = "CleverRaven";
repo = "Cataclysm-DDA";
rev = version;
2021-11-29 22:04:42 +01:00
sha256 = "sha256-2su1uQaWl9WG41207dRvOTdVKcQsEz/y0uTi9JX52uI=";
};
patches = [
# Unconditionally look for translation files in $out/share/locale
./locale-path-stable.patch
2022-09-13 18:51:37 +02:00
# Fixes compiler errors when compiling against SDL2_ttf >= 1.20.0, https://github.com/CleverRaven/Cataclysm-DDA/pull/59083
# Remove with next version update.
(fetchpatch {
url = "https://github.com/CleverRaven/Cataclysm-DDA/commit/625fadf3d493c1712d9ade2b849ff6a79765c7a7.patch";
hash = "sha256-c0NXkd6jSGSruKrwuYUmLbgiL97YQDkUm313fnMJ7GA=";
})
];
2021-08-19 00:52:26 +02:00
makeFlags = common.makeFlags ++ [
2021-11-29 22:04:42 +01:00
# Makefile declares version as 0.F, with no minor release number
2021-08-19 00:52:26 +02:00
"VERSION=${version}"
];
2020-04-09 09:11:51 +02:00
meta = common.meta // {
maintainers = with lib.maintainers;
2022-09-13 18:51:37 +02:00
common.meta.maintainers ++ [ skeidel ];
};
});
in
attachPkgs pkgs self