2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-02-03 14:23:53 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
|
|
|
, scons
|
2021-01-17 05:49:22 +00:00
|
|
|
, pkg-config
|
2022-09-24 07:39:33 +00:00
|
|
|
, SDL2
|
|
|
|
, SDL2_image
|
|
|
|
, SDL2_mixer
|
2020-02-03 14:23:53 +00:00
|
|
|
, libGLU
|
|
|
|
, libGL
|
|
|
|
, libpng
|
|
|
|
, physfs
|
2024-02-07 22:49:03 +00:00
|
|
|
, unstableGitUpdater
|
2018-01-15 02:53:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
music = fetchurl {
|
2018-03-25 05:04:25 +00:00
|
|
|
url = "https://www.dxx-rebirth.com/download/dxx/res/d2xr-sc55-music.dxa";
|
2018-01-15 02:53:21 +00:00
|
|
|
sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc";
|
|
|
|
};
|
|
|
|
|
2020-02-03 14:23:53 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dxx-rebirth";
|
2024-08-21 09:04:00 +00:00
|
|
|
version = "0.60.0-beta2-unstable-2024-08-11";
|
2018-01-15 02:53:21 +00:00
|
|
|
|
2020-02-03 14:23:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dxx-rebirth";
|
|
|
|
repo = "dxx-rebirth";
|
2024-08-21 09:04:00 +00:00
|
|
|
rev = "bd3c033bdf1faa4606086dcae0436531fb2e7e5c";
|
|
|
|
hash = "sha256-imNHJ55Wp3YueMsNVvb7Z51EyESZnPdtzAOp2TWfdqc=";
|
2018-01-15 02:53:21 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 05:49:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config scons ];
|
2018-01-15 02:53:21 +00:00
|
|
|
|
2022-09-24 07:39:33 +00:00
|
|
|
buildInputs = [ libGLU libGL libpng physfs SDL2 SDL2_image SDL2_mixer ];
|
2018-01-15 02:53:21 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-09-24 07:39:33 +00:00
|
|
|
sconsFlags = [ "sdl2=1" ];
|
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
2020-02-03 14:23:53 +00:00
|
|
|
"-Wno-format-nonliteral"
|
|
|
|
"-Wno-format-truncation"
|
|
|
|
];
|
2018-06-11 00:32:31 +00:00
|
|
|
|
2018-11-12 02:52:07 +00:00
|
|
|
postInstall = ''
|
2020-02-03 14:23:53 +00:00
|
|
|
install -Dm644 ${music} $out/share/games/dxx-rebirth/${music.name}
|
2018-01-15 02:53:21 +00:00
|
|
|
install -Dm644 -t $out/share/doc/dxx-rebirth *.txt
|
|
|
|
'';
|
|
|
|
|
2024-02-07 22:49:03 +00:00
|
|
|
passthru.updateScript = unstableGitUpdater {};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-15 02:53:21 +00:00
|
|
|
description = "Source Port of the Descent 1 and 2 engines";
|
2019-09-24 20:12:05 +00:00
|
|
|
homepage = "https://www.dxx-rebirth.com/";
|
2020-02-03 14:23:53 +00:00
|
|
|
license = licenses.gpl3;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2018-01-15 02:53:21 +00:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|