nixpkgs/pkgs/games/prboom/default.nix

35 lines
975 B
Nix
Raw Normal View History

2018-07-23 21:27:03 +00:00
{ stdenv, fetchurl, SDL, SDL_mixer, SDL_net
2019-11-10 16:44:34 +00:00
, libGLU ? null
, libGL ? null
2018-07-23 21:27:03 +00:00
, useOpenGL ? stdenv.hostPlatform == stdenv.buildPlatform
}:
2019-11-10 16:44:34 +00:00
assert useOpenGL -> libGL != null && libGLU != null;
2018-07-23 21:27:03 +00:00
stdenv.mkDerivation rec {
name = "prboom-2.5.0";
src = fetchurl {
url = "mirror://sourceforge/prboom/prboom-2.5.0.tar.gz";
sha256 = "1bjb04q8dk232956k30qlpq6q0hxb904yh1nflr87jcc1x3iqv12";
};
2018-07-23 21:27:03 +00:00
buildInputs = [ SDL SDL_mixer SDL_net ]
2019-11-10 16:44:34 +00:00
++ stdenv.lib.optionals useOpenGL [ libGL libGLU ];
2018-07-23 21:27:03 +00:00
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
configureFlags = [
(stdenv.lib.enableFeature useOpenGL "gl")
(stdenv.lib.enableFeature doCheck "sdltest")
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"--disable-cpu-opt"
"--without-x"
"ac_cv_type_uid_t=yes"
"ac_cv_type_gid_t=yes"
];
postInstall = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
mv $out/games/ $out/bin
'';
}