aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/games/iortcw/default.nix
blob: 3aa459777ea7ae96a5ecc30b1d96b0d92d01087c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ buildEnv, callPackage, makeWrapper }:

let
  sp = callPackage ./sp.nix {};
  mp = sp.overrideAttrs (oldAttrs: rec {
    sourceRoot = "source/MP";
  });
in buildEnv {
  name = "iortcw";

  paths = [ sp mp ];

  pathsToLink = [ "/opt" ];

  buildInputs = [ makeWrapper ];

  # so we can launch sp from mp game and vice versa
  postBuild = ''
    for i in `find -L $out/opt/iortcw -maxdepth 1 -type f -executable`; do
      makeWrapper $i $out/bin/`basename $i` --run "cd $out/opt/iortcw"
    done
  '';

  meta = sp.meta // {
    description = "Game engine for Return to Castle Wolfenstein";
  };
}