mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Adding Black Shades
svn path=/nixpkgs/trunk/; revision=22520
This commit is contained in:
parent
6b701731ec
commit
f3a813ae77
34
pkgs/games/blackshades/default.nix
Normal file
34
pkgs/games/blackshades/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{stdenv, fetchsvn, SDL, mesa, openal, libvorbis, freealut, SDL_image}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "blackshades-svn-110";
|
||||
src = fetchsvn {
|
||||
url = svn://svn.icculus.org/blackshades/trunk;
|
||||
rev = 110;
|
||||
sha256 = "0kbrh1dympk8scjxr6av24qs2bffz44l8qmw2m5gyqf4g3rxf6ra";
|
||||
};
|
||||
|
||||
NIX_LDFLAGS = "-lSDL_image";
|
||||
|
||||
buildInputs = [ SDL SDL_image mesa openal libvorbis freealut ];
|
||||
|
||||
patchPhase = ''
|
||||
sed -i -e s,Data/,$out/opt/$name/Data/,g \
|
||||
-e s,Data:,$out/opt/$name/Data/,g \
|
||||
Source/*.cpp
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/bin $out/opt/$name
|
||||
cp objs/blackshades $out/bin
|
||||
cp -R Data IF* Readme $out/opt/$name/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://icculus.org/blackshades/;
|
||||
description = "Protect the VIP";
|
||||
license = "free";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -9191,6 +9191,10 @@ let
|
||||
inherit fetchurl stdenv SDL SDL_image SDL_mixer SDL_ttf guile gettext;
|
||||
};
|
||||
|
||||
blackshades = import ../games/blackshades {
|
||||
inherit fetchsvn stdenv libvorbis SDL mesa openal freealut SDL_image;
|
||||
};
|
||||
|
||||
bsdgames = import ../games/bsdgames {
|
||||
inherit fetchurl stdenv ncurses openssl flex bison miscfiles;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user