pioneers: 15.4 -> 15.6

This commit is contained in:
Pavol Rusnak 2020-10-03 22:19:33 +02:00
parent f94ed4e968
commit 8eea9bd923

View File

@ -1,20 +1,30 @@
{stdenv, fetchurl, gtk3, pkgconfig, intltool } :
{ stdenv
, fetchurl
, pkg-config
, intltool
, itstool
, gtk3
, libxml2
}:
stdenv.mkDerivation rec {
name = "pioneers-15.4";
pname = "pioneers";
version = "15.6";
src = fetchurl {
url = "mirror://sourceforge/pio/${name}.tar.gz";
sha256 = "1p1d18hrfmqcnghip3shkzcs5qkz6j99jvkdkqfi7pqdvjc323cs";
url = "mirror://sourceforge/pio/${pname}-${version}.tar.gz";
sha256 = "07b3xdd81n8ybsb4fzc5lx0813y9crzp1hj69khncf4faj48sdcs";
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk3 ];
nativeBuildInputs = [ pkg-config intltool itstool ];
meta = {
homepage = "http://pio.sourceforge.net/";
license = stdenv.lib.licenses.gpl2Plus;
buildInputs = [ gtk3 libxml2 ];
meta = with stdenv.lib; {
description = "Addicting game based on The Settlers of Catan";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
homepage = "http://pio.sourceforge.net/"; # https does not work
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric ];
platforms = platforms.linux;
};
}