2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-07-04 15:12:19 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, ncurses
|
|
|
|
, SDL
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "curseofwar";
|
2020-07-18 11:39:10 +01:00
|
|
|
version = "1.3.0";
|
2019-07-04 15:12:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "a-nikolaev";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-07-18 11:39:10 +01:00
|
|
|
sha256 = "1wd71wdnj9izg5d95m81yx3684g4zdi7fsy0j5wwnbd9j34ilz1i";
|
2019-07-04 15:12:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
SDL
|
|
|
|
];
|
|
|
|
|
2020-07-30 09:49:09 +01:00
|
|
|
makeFlags = (if isNull SDL then [] else [ "SDL=yes" ]) ++ [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
# force platform's cc on darwin, otherwise gcc is used
|
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
];
|
2019-07-04 15:12:19 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-07-04 15:12:19 +01:00
|
|
|
description = "A fast-paced action strategy game";
|
|
|
|
homepage = "https://a-nikolaev.github.io/curseofwar/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ fgaz ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|