Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / pioneers / default.nix
blobf4122dc6bfb70e9b5c3e3ae6a1ab7bc7eb7b0572
1 { lib, stdenv
2 , fetchurl
3 , pkg-config
4 , intltool
5 , itstool
6 , gtk3
7 , libxml2
8 }:
10 stdenv.mkDerivation rec {
11   pname = "pioneers";
12   version = "15.6";
14   src = fetchurl {
15     url = "mirror://sourceforge/pio/${pname}-${version}.tar.gz";
16     sha256 = "07b3xdd81n8ybsb4fzc5lx0813y9crzp1hj69khncf4faj48sdcs";
17   };
19   nativeBuildInputs = [ pkg-config intltool itstool ];
21   buildInputs = [ gtk3 libxml2 ];
23   meta = with lib; {
24     description = "Addicting game based on The Settlers of Catan";
25     homepage = "https://pio.sourceforge.net/";  # https does not work
26     license = licenses.gpl2Plus;
27     maintainers = with maintainers; [ viric ];
28     platforms = platforms.linux;
29   };