nixpkgs/pkgs/games/dhewm3/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

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