nixpkgs/pkgs/games/dhewm3/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, SDL2, libGLU, libGL, zlib, libjpeg, libogg, libvorbis
2021-08-06 00:04:39 +02:00
, openal, curl, copyDesktopItems, makeDesktopItem }:
stdenv.mkDerivation rec {
pname = "dhewm3";
2022-07-08 00:13:10 +02:00
version = "1.5.2";
2017-01-30 08:46:27 +01:00
src = fetchFromGitHub {
owner = "dhewm";
repo = "dhewm3";
rev = version;
2022-07-08 00:13:10 +02:00
sha256 = "sha256-3ONOP/pRp04rxehXxgCCan1fPCqAs2bVDU/R4HPN1xQ=";
};
2019-11-10 17:44:34 +01:00
# Add libGLU libGL linking
patchPhase = ''
2017-01-30 08:46:27 +01:00
sed -i 's/\<idlib\()\?\)$/idlib GL\1/' neo/CMakeLists.txt
'';
2017-01-30 08:46:27 +01:00
preConfigure = ''
cd "$(ls -d dhewm3-*.src)"/neo
'';
2021-08-06 00:04:39 +02:00
nativeBuildInputs = [ cmake copyDesktopItems ];
2019-11-10 17:44:34 +01:00
buildInputs = [ SDL2 libGLU libGL zlib libjpeg libogg libvorbis openal curl ];
2021-08-06 00:04:39 +02:00
desktopItems = [
(makeDesktopItem {
name = "dhewm3";
exec = "dhewm3";
desktopName = "Doom 3";
categories = [ "Game" ];
2021-08-06 00:04:39 +02:00
})
];
2017-01-30 08:46:27 +01:00
hardeningDisable = [ "format" ];
meta = with lib; {
homepage = "https://github.com/dhewm/dhewm3";
description = "Doom 3 port to SDL";
2021-01-15 05:31:39 +01:00
license = lib.licenses.gpl3;
2017-01-30 08:46:27 +01:00
maintainers = with maintainers; [ MP2E ];
platforms = with platforms; linux;
};
}