From bb08c61a356773fe695afde3afc7a076b5a3fe20 Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Tue, 2 Feb 2010 22:21:56 +0000 Subject: Adding the game 'pioneers' svn path=/nixpkgs/trunk/; revision=19769 --- pkgs/games/pioneers/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/games/pioneers/default.nix (limited to 'pkgs/games/pioneers') diff --git a/pkgs/games/pioneers/default.nix b/pkgs/games/pioneers/default.nix new file mode 100644 index 000000000000..77e8ab3b92e2 --- /dev/null +++ b/pkgs/games/pioneers/default.nix @@ -0,0 +1,19 @@ +{stdenv, fetchurl, gtk, pkgconfig, intltool } : + +stdenv.mkDerivation rec { + name = "pioneers-0.12.3"; + src = fetchurl { + url = "mirror://sourceforge/pio/${name}.tar.gz"; + sha256 = "1yqypk5wmia8fqyrg9mn9xw6yfd0fpkxj1355csw1hgx8mh44y1d"; + }; + + buildInputs = [ gtk pkgconfig intltool ]; + + meta = { + homepage = http://pio.sourceforge.net/; + license = "GPLv2+"; + description = "Addicting game based on The Settlers of Catan"; + maintainers = with stdenv.lib.maintainers; [viric]; + platforms = with stdenv.lib.platforms; linux; + }; +} -- cgit 1.4.1