2016-09-11 21:24:51 +00:00
|
|
|
{stdenv, fetchurl, gtk2, pkgconfig, intltool } :
|
2010-02-02 22:21:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pioneers-0.12.3";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pio/${name}.tar.gz";
|
|
|
|
sha256 = "1yqypk5wmia8fqyrg9mn9xw6yfd0fpkxj1355csw1hgx8mh44y1d";
|
|
|
|
};
|
|
|
|
|
2016-09-11 21:24:51 +00:00
|
|
|
buildInputs = [ gtk2 pkgconfig intltool ];
|
2010-02-02 22:21:56 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 14:10:31 +00:00
|
|
|
|
2010-02-02 22:21:56 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://pio.sourceforge.net/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-02-02 22:21:56 +00:00
|
|
|
description = "Addicting game based on The Settlers of Catan";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|