summary refs log tree commit diff
path: root/pkgs/games/curseofwar/default.nix
blob: 8b915345f862fcc8b7aaa6dd3f398bf5a1120d5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv
, fetchFromGitHub
, fetchpatch
, ncurses
, SDL
}:

stdenv.mkDerivation rec {
  pname = "curseofwar";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "a-nikolaev";
    repo = pname;
    rev = "v${version}";
    sha256 = "1bj3lv5vrnwzzkgj31pyf1lzkz10qphvzlfz7a3j4plqkczjq92y";
  };

  patches = [(fetchpatch {
    # Pull request #40: https://github.com/a-nikolaev/curseofwar/pull/40
    name = "prefix-independent-data";
    url = "https://github.com/fgaz/curseofwar/commit/947dea527b2bf4c6e107b8e9c66f4c4fd775b6f9.patch";
    sha256 = "0ak5igaxmbavkbl8101xx6gswhwgzm5f6wyplwapgh7cylnclc61";
  })];

  buildInputs = [
    ncurses
    SDL
  ];

  makeFlags = (if isNull SDL then [] else [ "SDL=yes" ]) ++ [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "A fast-paced action strategy game";
    homepage = "https://a-nikolaev.github.io/curseofwar/";
    license = licenses.gpl3;
    maintainers = with maintainers; [ fgaz ];
    platforms = platforms.all;
  };
}