mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
Adding Black Shades Elite (a fork of Black Shades)
svn path=/nixpkgs/trunk/; revision=22538
This commit is contained in:
parent
aadb898a0b
commit
874b619180
37
pkgs/games/blackshadeselite/default.nix
Normal file
37
pkgs/games/blackshadeselite/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{stdenv, fetchsvn, SDL, mesa, openal, libvorbis, freealut, SDL_image, popt}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "blackshades-elite-svn-29";
|
||||
src = fetchsvn {
|
||||
url = svn://svn.gna.org/svn/blackshadeselite/trunk;
|
||||
rev = 29;
|
||||
sha256 = "1lkws5pqpgcgdlar11waikp6y41z678457n9jcik7nhn53cjjr1s";
|
||||
};
|
||||
|
||||
NIX_LDFLAGS = "-lSDL_image";
|
||||
|
||||
buildInputs = [ SDL SDL_image mesa openal libvorbis freealut popt ];
|
||||
|
||||
patchPhase = ''
|
||||
sed -i -e s,Data/,$out/opt/$name/Data/,g \
|
||||
-e s,Data:,$out/opt/$name/Data/,g \
|
||||
Source/*.cpp
|
||||
sed -i -e s/-march=pentium-m// Makefile
|
||||
sed -i -e '/include "Window.h"/a#include <cstring>' -e 's/strcmp/std::strcmp/' \
|
||||
Source/Window.cpp
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/bin $out/opt/$name
|
||||
cp objs/blackshades $out/bin/blackshadeselite
|
||||
cp -R Data IF* Readme $out/opt/$name/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://home.gna.org/blackshadeselite/;
|
||||
description = "Fork of Black Shades";
|
||||
license = "GPLv2+"; # Says its gna.org project page
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -9198,6 +9198,10 @@ let
|
||||
inherit fetchsvn stdenv libvorbis SDL mesa openal freealut SDL_image;
|
||||
};
|
||||
|
||||
blackshadeselite = import ../games/blackshadeselite {
|
||||
inherit fetchsvn stdenv libvorbis SDL mesa openal freealut SDL_image popt;
|
||||
};
|
||||
|
||||
bsdgames = import ../games/bsdgames {
|
||||
inherit fetchurl stdenv ncurses openssl flex bison miscfiles;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user