nixpkgs/pkgs/games/dxx-rebirth/default.nix

57 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-02-03 14:23:53 +00:00
, fetchFromGitHub
, fetchurl
, fetchpatch
, scons
, pkg-config
2020-02-03 14:23:53 +00:00
, SDL
, SDL_mixer
, libGLU
, libGL
, libpng
, physfs
}:
let
music = fetchurl {
url = "https://www.dxx-rebirth.com/download/dxx/res/d2xr-sc55-music.dxa";
sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc";
};
2020-02-03 14:23:53 +00:00
in
stdenv.mkDerivation rec {
pname = "dxx-rebirth";
2020-02-03 14:23:53 +00:00
version = "0.59.20200202";
2020-02-03 14:23:53 +00:00
src = fetchFromGitHub {
owner = "dxx-rebirth";
repo = "dxx-rebirth";
rev = "8ebb66c5c9c74ebb93d49741cc9545f2bb7fa05d";
sha256 = "1lsrlp47aby2m9hh7i3nv5rb0srlkmnq1w2ca6vyvlga9m9h7jrk";
};
nativeBuildInputs = [ pkg-config scons ];
2020-02-03 14:23:53 +00:00
buildInputs = [ libGLU libGL libpng physfs SDL SDL_mixer ];
enableParallelBuilding = true;
2020-02-03 14:23:53 +00:00
NIX_CFLAGS_COMPILE = [
"-Wno-format-nonliteral"
"-Wno-format-truncation"
];
2018-06-11 00:32:31 +00:00
postInstall = ''
2020-02-03 14:23:53 +00:00
install -Dm644 ${music} $out/share/games/dxx-rebirth/${music.name}
install -Dm644 -t $out/share/doc/dxx-rebirth *.txt
'';
meta = with lib; {
description = "Source Port of the Descent 1 and 2 engines";
homepage = "https://www.dxx-rebirth.com/";
2020-02-03 14:23:53 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; linux;
};
}