mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
7eccc156c1
Release announcement: https://cataclysmdda.org/releases/#0g-gaiman Changelog: https://github.com/CleverRaven/Cataclysm-DDA/blob/0.G/data/changelog.txt
41 lines
1,000 B
Nix
41 lines
1,000 B
Nix
{ stdenv, lib, callPackage, CoreFoundation, fetchFromGitHub, pkgs, wrapCDDA, attachPkgs
|
|
, tiles ? true, Cocoa
|
|
, debug ? false
|
|
, useXdgDir ? false
|
|
, version ? "2022-08-20"
|
|
, rev ? "f65b2bc4c6dea24bd9a993b8df146e5698e7e36f"
|
|
, sha256 ? "sha256-00Tp9OmsM39PYwAJXKKRS9zmn7KsGQ9s1eVmEqghkpw="
|
|
}:
|
|
|
|
let
|
|
common = callPackage ./common.nix {
|
|
inherit CoreFoundation tiles Cocoa debug useXdgDir;
|
|
};
|
|
|
|
self = common.overrideAttrs (common: rec {
|
|
pname = common.pname + "-git";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CleverRaven";
|
|
repo = "Cataclysm-DDA";
|
|
inherit rev sha256;
|
|
};
|
|
|
|
patches = [
|
|
# Unconditionally look for translation files in $out/share/locale
|
|
./locale-path.patch
|
|
];
|
|
|
|
makeFlags = common.makeFlags ++ [
|
|
"VERSION=git-${version}-${lib.substring 0 8 src.rev}"
|
|
];
|
|
|
|
meta = common.meta // {
|
|
maintainers = with lib.maintainers;
|
|
common.meta.maintainers ++ [ rardiol ];
|
|
};
|
|
});
|
|
in
|
|
|
|
attachPkgs pkgs self
|