Merge pull request #205162 from wegank/dosbox-darwin
Closes https://github.com/NixOS/nixpkgs/issues/203993
This commit is contained in:
commit
0b3e6d0eb4
2 changed files with 5 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
, stdenv
|
||||
, fetchurl
|
||||
, autoreconfHook
|
||||
, SDL_compat
|
||||
, SDL
|
||||
, SDL_net
|
||||
, SDL_sound
|
||||
, copyDesktopItems
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
buildInputs = [
|
||||
SDL_compat
|
||||
SDL
|
||||
SDL_net
|
||||
SDL_sound
|
||||
libGL
|
||||
|
|
|
@ -1964,7 +1964,9 @@ with pkgs;
|
|||
|
||||
dlx = callPackage ../applications/emulators/dlx { };
|
||||
|
||||
dosbox = callPackage ../applications/emulators/dosbox { };
|
||||
dosbox = callPackage ../applications/emulators/dosbox {
|
||||
SDL = if stdenv.isDarwin then SDL else SDL_compat;
|
||||
};
|
||||
|
||||
dosbox-staging = callPackage ../applications/emulators/dosbox-staging { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue