mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Adding the game 'pioneers'
svn path=/nixpkgs/trunk/; revision=19769
This commit is contained in:
parent
90962dc4cb
commit
bb08c61a35
19
pkgs/games/pioneers/default.nix
Normal file
19
pkgs/games/pioneers/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -8221,6 +8221,11 @@ let
|
||||
zlib = zlibStatic;
|
||||
};
|
||||
|
||||
pioneers = import ../games/pioneers {
|
||||
inherit stdenv fetchurl pkgconfig intltool;
|
||||
inherit (gtkLibs) gtk /*glib gtkmm*/;
|
||||
};
|
||||
|
||||
quake3demo = import ../games/quake3/wrapper {
|
||||
name = "quake3-demo-${quake3game.name}";
|
||||
description = "Demo of Quake 3 Arena, a classic first-person shooter";
|
||||
|
Loading…
Reference in New Issue
Block a user