nixpkgs/pkgs/games/iortcw/default.nix

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

28 lines
614 B
Nix
Raw Normal View History

2020-11-01 09:41:33 +00:00
{ buildEnv, callPackage, makeWrapper }:
let
sp = callPackage ./sp.nix {};
mp = sp.overrideAttrs (oldAttrs: {
sourceRoot = "${oldAttrs.src.name}/MP";
2020-11-01 09:41:33 +00:00
});
in buildEnv {
name = "iortcw";
paths = [ sp mp ];
pathsToLink = [ "/opt" ];
nativeBuildInputs = [ makeWrapper ];
2020-11-01 09:41:33 +00:00
# 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` --chdir "$out/opt/iortcw"
2020-11-01 09:41:33 +00:00
done
'';
meta = sp.meta // {
description = "Game engine for Return to Castle Wolfenstein";
};
}