mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
bugdom: Enable on Darwin
This commit is contained in:
parent
4097e922f6
commit
b75018a789
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, SDL2, cmake, makeWrapper }:
|
{ lib, stdenv, fetchFromGitHub, SDL2, IOKit, Foundation, cmake, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bugdom";
|
pname = "bugdom";
|
||||||
@ -12,8 +12,18 @@ stdenv.mkDerivation rec {
|
|||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||||||
|
# Expects SDL2.framework in specific location, which we don't have
|
||||||
|
# Passing this in cmakeFlags doesn't work because the path is hard-coded for Darwin
|
||||||
|
substituteInPlace cmake/FindSDL2.cmake \
|
||||||
|
--replace 'set(SDL2_LIBRARIES' 'set(SDL2_LIBRARIES "${SDL2}/lib/libSDL2.dylib") #'
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL2
|
SDL2
|
||||||
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
IOKit
|
||||||
|
Foundation
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -21,13 +31,25 @@ stdenv.mkDerivation rec {
|
|||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
"-DCMAKE_OSX_ARCHITECTURES=${stdenv.hostPlatform.darwinArch}"
|
||||||
|
# Expects SDL2.framework in specific location, which we don't have
|
||||||
|
"-DSDL2_INCLUDE_DIRS=${SDL2.dev}/include/SDL2"
|
||||||
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
|
'' + (if stdenv.hostPlatform.isDarwin then ''
|
||||||
|
mkdir -p $out/{bin,Applications}
|
||||||
|
mv {,$out/Applications/}Bugdom.app
|
||||||
|
ln -s $out/{Applications/Bugdom.app/Contents/MacOS,bin}/Bugdom
|
||||||
|
'' else ''
|
||||||
mkdir -p $out/share/bugdom
|
mkdir -p $out/share/bugdom
|
||||||
mv Data $out/share/bugdom
|
mv Data $out/share/bugdom
|
||||||
install -Dm755 {.,$out/bin}/Bugdom
|
install -Dm755 {.,$out/bin}/Bugdom
|
||||||
wrapProgram $out/bin/Bugdom --run "cd $out/share/bugdom"
|
wrapProgram $out/bin/Bugdom --run "cd $out/share/bugdom"
|
||||||
|
'') + ''
|
||||||
|
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
@ -39,6 +61,6 @@ stdenv.mkDerivation rec {
|
|||||||
cc-by-sa-40
|
cc-by-sa-40
|
||||||
];
|
];
|
||||||
maintainers = with maintainers; [ lux ];
|
maintainers = with maintainers; [ lux ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -31003,7 +31003,9 @@ with pkgs;
|
|||||||
|
|
||||||
btanks = callPackage ../games/btanks { };
|
btanks = callPackage ../games/btanks { };
|
||||||
|
|
||||||
bugdom = callPackage ../games/bugdom { };
|
bugdom = callPackage ../games/bugdom {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) IOKit Foundation;
|
||||||
|
};
|
||||||
|
|
||||||
bzflag = callPackage ../games/bzflag {
|
bzflag = callPackage ../games/bzflag {
|
||||||
inherit (darwin.apple_sdk.frameworks) Carbon CoreServices;
|
inherit (darwin.apple_sdk.frameworks) Carbon CoreServices;
|
||||||
|
Loading…
Reference in New Issue
Block a user