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

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

  nativeBuildInputs = [ pkgconfig intltool ];
  buildInputs = [ gtk3 ];

  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;
  };
}