ecwolf: add darwin support

This commit is contained in:
Weijia Wang 2023-02-06 16:05:19 +01:00
parent 763193e374
commit 8fd3e5e331

View File

@ -1,10 +1,10 @@
{ stdenv { stdenv
, lib , lib
, fetchFromBitbucket , fetchFromBitbucket
, makeDesktopItem
, copyDesktopItems
, cmake , cmake
, copyDesktopItems
, pkg-config , pkg-config
, makeWrapper
, zlib , zlib
, bzip2 , bzip2
, libjpeg , libjpeg
@ -25,18 +25,20 @@ stdenv.mkDerivation rec {
sha256 = "V2pSP8i20zB50WtUMujzij+ISSupdQQ/oCYYrOaTU1g="; sha256 = "V2pSP8i20zB50WtUMujzij+ISSupdQQ/oCYYrOaTU1g=";
}; };
nativeBuildInputs = [ cmake copyDesktopItems pkg-config ]; nativeBuildInputs = [ cmake copyDesktopItems pkg-config ]
++ lib.optionals stdenv.isDarwin [ makeWrapper ];
buildInputs = [ zlib bzip2 libjpeg SDL2 SDL2_net SDL2_mixer gtk3 ]; buildInputs = [ zlib bzip2 libjpeg SDL2 SDL2_net SDL2_mixer gtk3 ];
# Disable app bundle creation on Darwin. It fails, and it is not needed to run it from the Nix store NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework AppKit";
preConfigure = lib.optionalString stdenv.isDarwin ''
sed -i -e "s|include(\''${CMAKE_CURRENT_SOURCE_DIR}/macosx/install.txt)||" src/CMakeLists.txt
'';
# ECWolf installs its binary to the games/ directory, but Nix only adds bin/ # ECWolf installs its binary to the games/ directory, but Nix only adds bin/
# directories to the PATH. # directories to the PATH.
postInstall = '' postInstall = lib.optionalString stdenv.isLinux ''
mv "$out/games" "$out/bin" mv "$out/games" "$out/bin"
'' + lib.optionalString stdenv.isDarwin ''
mkdir -p $out/{Applications,bin}
cp -R ecwolf.app $out/Applications
makeWrapper $out/{Applications/ecwolf.app/Contents/MacOS,bin}/ecwolf
''; '';
meta = with lib; { meta = with lib; {
@ -45,7 +47,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ jayman2000 sander ]; maintainers = with maintainers; [ jayman2000 sander ];
platforms = platforms.all; platforms = platforms.all;
# On Darwin, the linker fails to find a bunch of symbols.
broken = stdenv.isDarwin;
}; };
} }