forked from mirrors/nixpkgs
dhewm: add desktop item
This commit is contained in:
parent
55c21071de
commit
f7ae4163e0
|
@ -1,5 +1,5 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, libGLU, libGL, zlib, libjpeg, libogg, libvorbis
|
||||
, openal, curl }:
|
||||
, openal, curl, copyDesktopItems, makeDesktopItem }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dhewm3";
|
||||
|
@ -21,9 +21,18 @@ stdenv.mkDerivation rec {
|
|||
cd "$(ls -d dhewm3-*.src)"/neo
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
nativeBuildInputs = [ cmake copyDesktopItems ];
|
||||
buildInputs = [ SDL2 libGLU libGL zlib libjpeg libogg libvorbis openal curl ];
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = "dhewm3";
|
||||
exec = "dhewm3";
|
||||
desktopName = "Doom 3";
|
||||
categories = "Game;";
|
||||
})
|
||||
];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue