2018-03-04 18:54:53 +01:00
|
|
|
{stdenv, fetchurl, gtk3, pkgconfig, intltool } :
|
2010-02-02 23:21:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 18:55:57 +01:00
|
|
|
name = "pioneers-15.4";
|
2010-02-02 23:21:56 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pio/${name}.tar.gz";
|
2018-02-27 18:55:57 +01:00
|
|
|
sha256 = "1p1d18hrfmqcnghip3shkzcs5qkz6j99jvkdkqfi7pqdvjc323cs";
|
2010-02-02 23:21:56 +01:00
|
|
|
};
|
|
|
|
|
2018-03-04 18:54:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
buildInputs = [ gtk3 ];
|
2016-02-12 15:10:31 +01:00
|
|
|
|
2010-02-02 23:21:56 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://pio.sourceforge.net/;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-02-02 23:21:56 +01:00
|
|
|
description = "Addicting game based on The Settlers of Catan";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|