nixpkgs/pkgs/games/eduke32/default.nix

78 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, pkgconfig, nasm, makeDesktopItem
2020-11-14 09:55:17 +00:00
, alsaLib, flac, gtk2, libvorbis, libvpx, libGLU, libGL
, SDL2, SDL2_mixer }:
2015-04-30 10:50:27 +00:00
let
2020-11-14 09:55:17 +00:00
version = "20200907";
rev = "9257";
2020-11-14 09:55:17 +00:00
revExtra = "93f62bbad";
desktopItem = makeDesktopItem {
name = "eduke32";
exec = "@out@/bin/${wrapper}";
comment = "Duke Nukem 3D port";
desktopName = "Enhanced Duke Nukem 3D";
genericName = "Duke Nukem 3D port";
categories = "Game;";
};
wrapper = "eduke32-wrapper";
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "eduke32";
inherit version;
src = fetchurl {
url = "http://dukeworld.duke4.net/eduke32/synthesis/latest/eduke32_src_${version}-${rev}-${revExtra}.tar.xz";
2020-11-14 09:55:17 +00:00
sha256 = "972630059be61ef9564a241b84ef2ee4f69fc85c19ee36ce46052ff2f1ce3bf9";
};
2020-11-14 09:55:17 +00:00
buildInputs = [ alsaLib flac gtk2 libvorbis libvpx libGL libGLU SDL2 SDL2_mixer ];
nativeBuildInputs = [ makeWrapper pkgconfig ]
2021-01-15 04:31:39 +00:00
++ lib.optional (stdenv.hostPlatform.system == "i686-linux") nasm;
2015-04-30 10:50:27 +00:00
postPatch = ''
substituteInPlace source/build/src/glbuild.cpp \
2019-11-10 16:44:34 +00:00
--replace libGLU.so ${libGLU}/lib/libGLU.so
for f in glad.c glad_wgl.c ; do
substituteInPlace source/glad/src/$f \
2019-11-10 16:44:34 +00:00
--replace libGL.so ${libGL}/lib/libGL.so
done
2015-04-30 10:50:27 +00:00
'';
2019-10-30 01:29:30 +00:00
NIX_CFLAGS_COMPILE = "-I${SDL2.dev}/include/SDL2 -I${SDL2_mixer}/include/SDL2";
2015-04-30 10:50:27 +00:00
makeFlags = [
"SDLCONFIG=${SDL2}/bin/sdl2-config"
];
enableParallelBuilding = true;
installPhase = ''
runHook preInstall
install -Dm755 -t $out/bin eduke32 mapster32
makeWrapper $out/bin/eduke32 $out/bin/${wrapper} \
--set-default EDUKE32_DATA_DIR /var/lib/games/eduke32 \
--add-flags '-g "$EDUKE32_DATA_DIR/DUKE3D.GRP"'
2015-04-30 10:50:27 +00:00
cp -rv ${desktopItem}/share $out
substituteInPlace $out/share/applications/eduke32.desktop \
--subst-var out
runHook postInstall
'';
meta = with lib; {
description = "Enhanched port of Duke Nukem 3D for various platforms";
homepage = "http://eduke32.com";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ sander ];
# Darwin is untested (supported by upstream)
platforms = platforms.all;
};
}