nixpkgs/pkgs/games/blackshades/default.nix

37 lines
899 B
Nix
Raw Normal View History

2021-06-17 08:03:18 +00:00
{ lib, stdenv, fetchFromSourcehut
2021-07-24 08:28:04 +00:00
, SDL, stb, libGLU, libGL, openal, libvorbis, freealut }:
2021-06-17 08:03:18 +00:00
stdenv.mkDerivation rec {
pname = "blackshades";
2021-07-24 08:28:04 +00:00
version = "1.3.1";
2021-06-17 08:03:18 +00:00
src = fetchFromSourcehut {
owner = "~cnx";
repo = pname;
rev = version;
2021-07-24 08:28:04 +00:00
sha256 = "0yzp74ynkcp6hh5m4zmvrgx5gwm186hq7p3m7qkww54qdyijb3rv";
2021-06-17 08:03:18 +00:00
};
2021-07-24 08:28:04 +00:00
buildInputs = [ SDL stb libGLU libGL openal libvorbis freealut ];
2021-07-24 08:28:04 +00:00
postPatch = ''
2021-06-17 08:03:18 +00:00
sed -i -e s,Data/,$out/share/$pname/,g \
-e s,Data:,$out/share/$pname/,g \
src/*.cpp
'';
installPhase = ''
2021-07-24 08:28:04 +00:00
mkdir -p $out/bin $out/share
2021-06-17 08:03:18 +00:00
cp build/blackshades $out/bin
cp -R Data $out/share/$pname
'';
meta = {
2021-06-17 08:03:18 +00:00
homepage = "https://sr.ht/~cnx/blackshades";
description = "A psychic bodyguard FPS";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ McSinyx viric ];
2021-01-15 04:31:39 +00:00
platforms = with lib.platforms; linux;
};
}