bab00e00de
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, fetchpatch
|
|
, scons
|
|
, pkg-config
|
|
, SDL2
|
|
, SDL2_image
|
|
, SDL2_mixer
|
|
, libGLU
|
|
, libGL
|
|
, libpng
|
|
, physfs
|
|
, unstableGitUpdater
|
|
}:
|
|
|
|
let
|
|
music = fetchurl {
|
|
url = "https://www.dxx-rebirth.com/download/dxx/res/d2xr-sc55-music.dxa";
|
|
sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc";
|
|
};
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "dxx-rebirth";
|
|
version = "0-unstable-2024-01-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dxx-rebirth";
|
|
repo = "dxx-rebirth";
|
|
rev = "5c710857a9312e1b2f3249c51c12b55f9390a2b1";
|
|
hash = "sha256-nEPMJiTeePAmourAksUNqyy5whs+8+qy/qrycfNw2lo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config scons ];
|
|
|
|
buildInputs = [ libGLU libGL libpng physfs SDL2 SDL2_image SDL2_mixer ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
sconsFlags = [ "sdl2=1" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
"-Wno-format-nonliteral"
|
|
"-Wno-format-truncation"
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm644 ${music} $out/share/games/dxx-rebirth/${music.name}
|
|
install -Dm644 -t $out/share/doc/dxx-rebirth *.txt
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {};
|
|
|
|
meta = with lib; {
|
|
description = "Source Port of the Descent 1 and 2 engines";
|
|
homepage = "https://www.dxx-rebirth.com/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|