diff options
author | Sander van der Burg | 2021-07-27 23:11:09 +0200 |
---|---|---|
committer | Sander van der Burg | 2021-07-27 23:11:09 +0200 |
commit | f65e1d8793c76766c45d04a507196dbff4a4e10f (patch) | |
tree | 2c75bb99434e8507245ad3d031b6691edb46a0f1 /pkgs/games/ecwolf/default.nix | |
parent | 16b7e4900ebb66db4414694f91a7c22214a16440 (diff) |
ecwolf: fix compilation on darwin
Diffstat (limited to 'pkgs/games/ecwolf/default.nix')
-rw-r--r-- | pkgs/games/ecwolf/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/games/ecwolf/default.nix b/pkgs/games/ecwolf/default.nix index 519398a738bf..b7bb382db835 100644 --- a/pkgs/games/ecwolf/default.nix +++ b/pkgs/games/ecwolf/default.nix @@ -33,6 +33,10 @@ stdenv.mkDerivation rec { preConfigure = '' sed -i -e "s|ecwolf.pk3|$out/share/ecwolf/ecwolf.pk3|" src/version.h + '' + # Disable app bundle creation on Darwin. It fails, and it is not needed to run it from the Nix store + + lib.optionalString (stdenv.isDarwin) '' + sed -i -e "s|include(\''${CMAKE_CURRENT_SOURCE_DIR}/macosx/install.txt)||" src/CMakeLists.txt ''; # Install the required PK3 file in the required data directory @@ -46,7 +50,6 @@ stdenv.mkDerivation rec { homepage = "https://maniacsvault.net/ecwolf/"; license = licenses.gpl2Plus; maintainers = with maintainers; [ sander ]; - # Darwin is untested (supported by upstream) platforms = platforms.all; }; } |