nixpkgs/pkgs/games/iortcw/sp.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, opusfile, libogg, SDL2, openal, freetype
2020-11-01 10:41:33 +01:00
, libjpeg, curl, makeWrapper }:
stdenv.mkDerivation rec {
pname = "iortcw-sp";
version = "1.51c";
src = fetchFromGitHub {
owner = "iortcw";
repo = "iortcw";
rev = version;
sha256 = "0g5wgqb1gm34pd05dj2i8nj3qhsz0831p3m7bsgxpjcg9c00jpyw";
};
enableParallelBuilding = true;
sourceRoot = "${src.name}/SP";
2020-11-01 10:41:33 +01:00
makeFlags = [
"USE_INTERNAL_LIBS=0"
"COPYDIR=${placeholder "out"}/opt/iortcw"
"USE_OPENAL_DLOPEN=0"
"USE_CURL_DLOPEN=0"
];
installTargets = [ "copyfiles" ];
buildInputs = [
opusfile libogg SDL2 freetype libjpeg openal curl
];
nativeBuildInputs = [ makeWrapper ];
env.NIX_CFLAGS_COMPILE = toString [
2020-11-01 10:41:33 +01:00
"-I${SDL2.dev}/include/SDL2"
"-I${opusfile.dev}/include/opus"
2020-11-01 10:41:33 +01:00
];
NIX_CFLAGS_LINK = [ "-lSDL2" ];
postInstall = ''
for i in `find $out/opt/iortcw -maxdepth 1 -type f -executable`; do
makeWrapper $i $out/bin/`basename $i` --chdir "$out/opt/iortcw"
2020-11-01 10:41:33 +01:00
done
'';
meta = with lib; {
2020-11-01 10:41:33 +01:00
description = "Single player version of game engine for Return to Castle Wolfenstein";
homepage = src.meta.homepage;
license = licenses.gpl3;
platforms = platforms.linux;
2024-01-12 14:21:40 +01:00
maintainers = with maintainers; [ rjpcasalino ];
2020-11-01 10:41:33 +01:00
};
}