about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh (NixOS) <40807862+orivej-nixos@users.noreply.github.com>2018-11-11 03:09:27 +0000
committerGitHub <noreply@github.com>2018-11-11 03:09:27 +0000
commit59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb (patch)
treef10f22e6cba6e3e1e9dfcfbae40371a3d7e87ffd
parentcf7e7127c56ab04efaf1459d09810735bae52ccd (diff)
parent65e0b5c725bccbaef69b673fa86bd647c4891b49 (diff)
downloadnixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.tar
nixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.tar.gz
nixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.tar.bz2
nixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.tar.lz
nixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.tar.xz
nixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.tar.zst
nixlib-59ddb14543107c9ceb53d96ee796c2c7d0c4d9fb.zip
Merge pull request #50216 from orivej/dosbox
dosbox: 0.74 -> 0.74-2
-rw-r--r--pkgs/development/libraries/SDL_sound/default.nix8
-rw-r--r--pkgs/misc/emulators/dosbox/default.nix25
2 files changed, 11 insertions, 22 deletions
diff --git a/pkgs/development/libraries/SDL_sound/default.nix b/pkgs/development/libraries/SDL_sound/default.nix
index 2a009a3b7104..0e717c530357 100644
--- a/pkgs/development/libraries/SDL_sound/default.nix
+++ b/pkgs/development/libraries/SDL_sound/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL, libvorbis, flac, libmikmod }:
+{ stdenv, lib, fetchurl, SDL, libvorbis, flac, libmikmod }:
 
 stdenv.mkDerivation rec {
   name = "SDL_sound-${version}";
@@ -11,9 +11,11 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ SDL libvorbis flac libmikmod ];
 
-  meta = with stdenv.lib; {
+  configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
+
+  meta = with lib; {
     description = "SDL sound library";
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     license = licenses.lgpl21;
     homepage = https://www.icculus.org/SDL_sound/;
   };
diff --git a/pkgs/misc/emulators/dosbox/default.nix b/pkgs/misc/emulators/dosbox/default.nix
index 57e76a964376..878e98fa1665 100644
--- a/pkgs/misc/emulators/dosbox/default.nix
+++ b/pkgs/misc/emulators/dosbox/default.nix
@@ -1,31 +1,16 @@
-{ stdenv, lib, fetchurl, SDL, makeDesktopItem, libGLU_combined }:
+{ stdenv, lib, fetchurl, makeDesktopItem, SDL, SDL_net, SDL_sound, libGLU_combined, libpng }:
 
 stdenv.mkDerivation rec {
-  name = "dosbox-0.74";
+  name = "dosbox-0.74-2";
 
   src = fetchurl {
     url = "mirror://sourceforge/dosbox/${name}.tar.gz";
-    sha256 = "01cfjc5bs08m4w79nbxyv7rnvzq2yckmgrbq36njn06lw8b4kxqk";
+    sha256 = "1ksp1b5szi0vy4x55rm3j1y9wq5mlslpy8llpg87rpdyjlsk0xvh";
   };
 
-  patches =
-    [ # Fix building with GCC 4.6.
-      (fetchurl {
-        url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/games-emulation/dosbox/files/dosbox-0.74-gcc46.patch?revision=1.1";
-        sha256 = "03iv1ph7fccfw327ngnhvzwyiix7fsbdb5mmpxivzkidhlrssxq9";
-      })
-      (fetchurl {
-        url = "https://svnweb.freebsd.org/ports/head/emulators/dosbox/files/patch-src_gui_sdlmain.cpp?revision=435580&view=co&pathrev=435580";
-        sha256 = "1mbj5wrn53k0zds2adys34949vzsbfgm0pmsyx14v9j0cxi7drca";
-        name = "patch-src_gui_sdlmain.cpp";
-      })
-    ];
-
-  patchFlags = "-p0";
-
   hardeningDisable = [ "format" ];
 
-  buildInputs = [ SDL libGLU_combined ];
+  buildInputs = [ SDL SDL_net SDL_sound libGLU_combined libpng ];
 
   configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
 
@@ -43,6 +28,8 @@ stdenv.mkDerivation rec {
      cp ${desktopItem}/share/applications/* $out/share/applications
   '';
 
+  enableParallelBuilding = true;
+
   meta = with lib; {
     homepage = http://www.dosbox.com/;
     description = "A DOS emulator";