summary refs log tree commit diff
path: root/pkgs/games/pioneers
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-02 22:21:56 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-02 22:21:56 +0000
commitbb08c61a356773fe695afde3afc7a076b5a3fe20 (patch)
tree2bea9672d901a78d733be78a6d45e1b5dfd315d9 /pkgs/games/pioneers
parent90962dc4cbcc32000b273b135390092fc4c13430 (diff)
downloadnixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.tar
nixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.tar.gz
nixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.tar.bz2
nixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.tar.lz
nixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.tar.xz
nixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.tar.zst
nixpkgs-bb08c61a356773fe695afde3afc7a076b5a3fe20.zip
Adding the game 'pioneers'
svn path=/nixpkgs/trunk/; revision=19769
Diffstat (limited to 'pkgs/games/pioneers')
-rw-r--r--pkgs/games/pioneers/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/games/pioneers/default.nix b/pkgs/games/pioneers/default.nix
new file mode 100644
index 00000000000..77e8ab3b92e
--- /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;
+  };
+}