Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / iortcw / sp.nix
blob66944c49ddd47551e7c41a67da90b960d6f6b1fb
1 { lib, stdenv, fetchFromGitHub, opusfile, libogg, SDL2, openal, freetype
2 , libjpeg, curl, makeWrapper }:
4 stdenv.mkDerivation rec {
5   pname = "iortcw-sp";
6   version = "1.51c";
8   src = fetchFromGitHub {
9     owner = "iortcw";
10     repo = "iortcw";
11     rev = version;
12     sha256 = "0g5wgqb1gm34pd05dj2i8nj3qhsz0831p3m7bsgxpjcg9c00jpyw";
13   };
15   enableParallelBuilding = true;
17   sourceRoot = "${src.name}/SP";
19   makeFlags = [
20     "USE_INTERNAL_LIBS=0"
21     "COPYDIR=${placeholder "out"}/opt/iortcw"
22     "USE_OPENAL_DLOPEN=0"
23     "USE_CURL_DLOPEN=0"
24   ];
26   installTargets = [ "copyfiles" ];
28   buildInputs = [
29     opusfile libogg SDL2 freetype libjpeg openal curl
30   ];
31   nativeBuildInputs = [ makeWrapper ];
33   env.NIX_CFLAGS_COMPILE = toString [
34     "-I${SDL2.dev}/include/SDL2"
35     "-I${opusfile.dev}/include/opus"
36   ];
37   NIX_CFLAGS_LINK = [ "-lSDL2" ];
39   postInstall = ''
40     for i in `find $out/opt/iortcw -maxdepth 1 -type f -executable`; do
41       makeWrapper $i $out/bin/`basename $i` --chdir "$out/opt/iortcw"
42     done
43   '';
45   meta = with lib; {
46     description = "Single player version of game engine for Return to Castle Wolfenstein";
47     homepage = src.meta.homepage;
48     license = licenses.gpl3;
49     platforms = platforms.linux;
50     maintainers = with maintainers; [ ];
51   };