nixpkgs/pkgs/games/pioneers/default.nix
Franz Pletz 9d65dbf37b
pioneers: build with gtk3
Won't build the gtk client otherwise. cc #35967
2018-03-04 18:55:41 +01:00

21 lines
601 B
Nix

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