summary refs log tree commit diff
path: root/pkgs/games/pioneers/default.nix
blob: af9900cede536088b1d038eb7da193dcbb94c344 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, gtk, pkgconfig, intltool } :

stdenv.mkDerivation rec {
  name = "pioneers-0.12.3";
  src = fetchurl {
    url = "mirror://sourceforge/pio/${name}.tar.gz";
    sha256 = "1yqypk5wmia8fqyrg9mn9xw6yfd0fpkxj1355csw1hgx8mh44y1d";
  };

  buildInputs = [ gtk pkgconfig intltool ];

  meta = {
    homepage = http://pio.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2Plus;
    description = "Addicting game based on The Settlers of Catan";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}