nixpkgs/pkgs/games/pioneers/default.nix

31 lines
676 B
Nix
Raw Normal View History

{ lib, stdenv
2020-10-03 20:19:33 +00:00
, fetchurl
, pkg-config
, intltool
, itstool
, gtk3
, libxml2
}:
stdenv.mkDerivation rec {
2020-10-03 20:19:33 +00:00
pname = "pioneers";
version = "15.6";
src = fetchurl {
2020-10-03 20:19:33 +00:00
url = "mirror://sourceforge/pio/${pname}-${version}.tar.gz";
sha256 = "07b3xdd81n8ybsb4fzc5lx0813y9crzp1hj69khncf4faj48sdcs";
};
2020-10-03 20:19:33 +00:00
nativeBuildInputs = [ pkg-config intltool itstool ];
buildInputs = [ gtk3 libxml2 ];
2016-02-12 14:10:31 +00:00
meta = with lib; {
description = "Addicting game based on The Settlers of Catan";
2020-10-03 20:19:33 +00:00
homepage = "http://pio.sourceforge.net/"; # https does not work
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric ];
platforms = platforms.linux;
};
}