Adding Kobo Deluxe.

svn path=/nixpkgs/trunk/; revision=15045
This commit is contained in:
Lluís Batlle i Rossell 2009-04-14 22:25:03 +00:00
parent 9c827683d9
commit 035b95a4de
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{stdenv, fetchurl, SDL, SDL_image} :
stdenv.mkDerivation {
name = "kobodeluxe-0.5.1";
src = fetchurl {
url = http://olofson.net/kobodl/download/KoboDeluxe-0.5.1.tar.bz2;
sha256 = "0f7b910a399d985437564af8c5d81d6dcf22b96b26b01488d72baa6a6fdb5c2c";
};
buildInputs = [ SDL SDL_image];
meta = {
homepage = http://olofson.net/kobodl/;
description = "Enhanced version of Akira Higuchi's game XKobo for Un*x systems with X11";
license = "GPLv2+";
};
}

View File

@ -9366,6 +9366,10 @@ let
flex = flex2535;
};
kobodeluxe = import ../games/kobodeluxe {
inherit stdenv fetchurl SDL SDL_image;
};
lincity = builderDefsPackage (import ../games/lincity) {
inherit (xlibs) libX11 libXext xextproto
libICE libSM xproto;