summary refs log tree commit diff
path: root/pkgs/games/wesnoth/default.nix
blob: 65c6002091e4fbe53ab4148a4dabab19f3b85cc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
args: with args;
stdenv.mkDerivation (rec {
  pname = "wesnoth";
  version = "1.4.1";

  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://surfnet.dl.sourceforge.net/sourceforge/${pname}/${name}.tar.bz2";
    sha256 = "c5b7b478553dc8994d99024e14b48b3f64e2c328631bd5b05904509b499fa68c";
  };

  buildInputs = [SDL SDL_image SDL_mixer SDL_net gettext zlib boost freetype];

  configureFlags = "--with-preferences-dir=.${name} --program-suffix=-${version} --with-datadir-name=${name} --with-boost=${boost}/include --disable-python";

  meta = {
    description = "
      The Battle for Wesnoth  is a free, turn-based strategy game with a fantasy theme.
";
  };
})