mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
7eccc156c1
Release announcement: https://cataclysmdda.org/releases/#0g-gaiman Changelog: https://github.com/CleverRaven/Cataclysm-DDA/blob/0.G/data/changelog.txt
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ 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
|
|
];
|
|
|
|
makeFlags = common.makeFlags ++ [
|
|
# Makefile declares version as 0.F, with no minor release number
|
|
"VERSION=${version}"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
# Needed with GCC 12
|
|
"-Wno-error=array-bounds"
|
|
];
|
|
|
|
meta = common.meta // {
|
|
maintainers = with lib.maintainers;
|
|
common.meta.maintainers ++ [ skeidel ];
|
|
changelog = "https://github.com/CleverRaven/Cataclysm-DDA/blob/${version}/data/changelog.txt";
|
|
};
|
|
});
|
|
in
|
|
|
|
attachPkgs pkgs self
|