forked from mirrors/nixpkgs
prboom-plus: init at 2.6.2
This commit is contained in:
parent
0122dbc412
commit
ded34c9cb0
62
pkgs/games/prboom-plus/default.nix
Normal file
62
pkgs/games/prboom-plus/default.nix
Normal file
|
@ -0,0 +1,62 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, SDL2
|
||||
, SDL2_mixer
|
||||
, SDL2_image
|
||||
, SDL2_net
|
||||
, fluidsynth
|
||||
, soundfont-fluid
|
||||
, portmidi
|
||||
, dumb
|
||||
, libvorbis
|
||||
, libmad
|
||||
, pcre
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "prboom-plus";
|
||||
version = "2.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "coelckers";
|
||||
repo = "prboom-plus";
|
||||
rev = "v${version}";
|
||||
sha256 = "iK70PMRLJiZHcK1jCQ2s88LgEMbcfG2pXjwCDVG7zUM=";
|
||||
};
|
||||
|
||||
sourceRoot = "source/prboom2";
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
SDL2
|
||||
SDL2_mixer
|
||||
SDL2_image
|
||||
SDL2_net
|
||||
fluidsynth
|
||||
portmidi
|
||||
dumb
|
||||
libvorbis
|
||||
libmad
|
||||
pcre
|
||||
];
|
||||
|
||||
# Fixes impure path to soundfont
|
||||
prePatch = ''
|
||||
substituteInPlace src/m_misc.c --replace \
|
||||
"/usr/share/sounds/sf3/default-GM.sf3" \
|
||||
"${soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/coelckers/prboom-plus";
|
||||
description = "An advanced, Vanilla-compatible Doom engine based on PrBoom";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.ashley ];
|
||||
};
|
||||
}
|
|
@ -31861,6 +31861,8 @@ with pkgs;
|
|||
|
||||
prboom = callPackage ../games/prboom { };
|
||||
|
||||
prboom-plus = callPackage ../games/prboom-plus { };
|
||||
|
||||
pysolfc = python3Packages.callPackage ../games/pysolfc { };
|
||||
|
||||
qqwing = callPackage ../games/qqwing { };
|
||||
|
|
Loading…
Reference in a new issue