nixpkgs/pkgs/games/pioneers/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

23 lines
639 B
Nix

{stdenv, fetchurl, gtk2, pkgconfig, intltool } :
stdenv.mkDerivation rec {
name = "pioneers-0.12.3";
src = fetchurl {
url = "mirror://sourceforge/pio/${name}.tar.gz";
sha256 = "1yqypk5wmia8fqyrg9mn9xw6yfd0fpkxj1355csw1hgx8mh44y1d";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 intltool ];
hardeningDisable = [ "format" ];
meta = {
homepage = http://pio.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus;
description = "Addicting game based on The Settlers of Catan";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}