mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
Adding Kobo Deluxe.
svn path=/nixpkgs/trunk/; revision=15045
This commit is contained in:
parent
9c827683d9
commit
035b95a4de
17
pkgs/games/kobodeluxe/default.nix
Normal file
17
pkgs/games/kobodeluxe/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user