mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
98 lines
2.4 KiB
Nix
98 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
autoreconfHook,
|
|
SDL,
|
|
SDL_net,
|
|
SDL_sound,
|
|
copyDesktopItems,
|
|
graphicsmagick,
|
|
libGL,
|
|
libGLU,
|
|
libpng,
|
|
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=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
copyDesktopItems
|
|
graphicsmagick
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|