2018-03-04 17:54:53 +00:00
|
|
|
{stdenv, fetchurl, gtk3, pkgconfig, intltool } :
|
2010-02-02 22:21:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 17:55:57 +00:00
|
|
|
name = "pioneers-15.4";
|
2010-02-02 22:21:56 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pio/${name}.tar.gz";
|
2018-02-27 17:55:57 +00:00
|
|
|
sha256 = "1p1d18hrfmqcnghip3shkzcs5qkz6j99jvkdkqfi7pqdvjc323cs";
|
2010-02-02 22:21:56 +00:00
|
|
|
};
|
|
|
|
|
2018-03-04 17:54:53 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
buildInputs = [ gtk3 ];
|
2016-02-12 14:10:31 +00:00
|
|
|
|
2010-02-02 22:21:56 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://pio.sourceforge.net/";
|
2014-06-19 05:19:00 +01: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;
|
|
|
|
};
|
|
|
|
}
|