Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
106 lines
2.5 KiB
Nix
106 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
autoreconfHook,
|
|
SDL,
|
|
SDL_net,
|
|
SDL_sound,
|
|
copyDesktopItems,
|
|
graphicsmagick,
|
|
libGL,
|
|
libGLU,
|
|
libpng,
|
|
binutils,
|
|
makeDesktopItem,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dosbox";
|
|
version = "0.74-3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/dosbox/dosbox-${version}.tar.gz";
|
|
hash = "sha256-wNE91+0u02O2jeYVR1eB6JHNWC6BYrXDZpE3UCIiJgo=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/joncampbell123/dosbox-x/commit/006d5727d36d1ec598e387f2f1a3c521e3673dcb.patch";
|
|
includes = [ "src/gui/render_templates_sai.h" ];
|
|
hash = "sha256-HSO29/LgZRKQ3HQBA0QF5henG8pCSoe1R2joYNPcUcE=";
|
|
})
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
copyDesktopItems
|
|
graphicsmagick
|
|
SDL # for sdl-config during build time
|
|
];
|
|
|
|
depsBuildBuild = [
|
|
binutils # build calls `ar`
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL
|
|
SDL_net
|
|
SDL_sound
|
|
libpng
|
|
]
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
|
libGL
|
|
libGLU
|
|
];
|
|
|
|
# Tests for SDL_net.h for modem & IPX support, not automatically picked up due to being in SDL subdirectory
|
|
env.NIX_CFLAGS_COMPILE = "-I${lib.getDev SDL_net}/include/SDL";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
configureFlags = lib.optional stdenv.hostPlatform.isDarwin "--disable-sdltest";
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "dosbox";
|
|
exec = "dosbox";
|
|
icon = "dosbox";
|
|
comment = "x86 dos emulator";
|
|
desktopName = "DOSBox";
|
|
genericName = "DOS emulator";
|
|
categories = [
|
|
"Emulator"
|
|
"Game"
|
|
];
|
|
})
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/icons/hicolor/256x256/apps
|
|
gm convert src/dosbox.ico $out/share/icons/hicolor/256x256/apps/dosbox.png
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.dosbox.com/";
|
|
changelog = "https://www.dosbox.com/wiki/Releases";
|
|
description = "DOS emulator";
|
|
longDescription = ''
|
|
DOSBox is an emulator that recreates a MS-DOS compatible environment
|
|
(complete with Sound, Input, Graphics and even basic networking). This
|
|
environment is complete enough to run many classic MS-DOS games completely
|
|
unmodified. In order to utilize all of DOSBox's features you need to first
|
|
understand some basic concepts about the MS-DOS environment.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "dosbox";
|
|
};
|
|
}
|