depot/third_party/nixpkgs/pkgs/games/iortcw/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

27 lines
604 B
Nix

{ 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" ];
nativeBuildInputs = [ 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` --chdir "$out/opt/iortcw"
done
'';
meta = sp.meta // {
description = "Game engine for Return to Castle Wolfenstein";
};
}