mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 14:32:59 +00:00
quakespasm: fix build on Darwin (#346972)
This commit is contained in:
commit
10b89ee9eb
@ -20,6 +20,11 @@ stdenv.mkDerivation rec {
|
||||
./quakespasm-darwin-makefile-improvements.patch
|
||||
];
|
||||
|
||||
# Quakespasm tries to set a 10.6 deployment target, but that’s too low for SDL2.
|
||||
postPatch = ''
|
||||
sed -i Makefile.darwin -e '/-mmacosx-version-min/d'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
copyDesktopItems
|
||||
pkg-config
|
||||
|
Loading…
Reference in New Issue
Block a user