depot/third_party/nixpkgs/pkgs/games/curseofwar/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

36 lines
797 B
Nix

{ lib, stdenv
, fetchFromGitHub
, ncurses
, SDL
}:
stdenv.mkDerivation (finalAttrs: {
pname = "curseofwar";
version = "1.3.0";
src = fetchFromGitHub {
owner = "a-nikolaev";
repo = "curseofwar";
rev = "v${finalAttrs.version}";
sha256 = "1wd71wdnj9izg5d95m81yx3684g4zdi7fsy0j5wwnbd9j34ilz1i";
};
buildInputs = [
ncurses
SDL
];
makeFlags = (lib.optionals (SDL != null) [ "SDL=yes" ]) ++ [
"PREFIX=$(out)"
# force platform's cc on darwin, otherwise gcc is used
"CC=${stdenv.cc.targetPrefix}cc"
];
meta = with lib; {
description = "Fast-paced action strategy game";
homepage = "https://a-nikolaev.github.io/curseofwar/";
license = licenses.gpl3;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
})