blob: 7a1e690c39df4a2ff0dc16ee6d65468f8aac41b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ stdenv, makeWrapper
, dxx-rebirth, descent1-assets, descent2-assets }:
let
generic = ver: assets: stdenv.mkDerivation {
name = "d${toString ver}x-rebirth-full-${assets.version}";
nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
mkdir -p $out/bin
makeWrapper ${dxx-rebirth}/bin/d${toString ver}x-rebirth $out/bin/descent${toString ver} \
--add-flags "-hogdir ${assets}/share/games/descent${toString ver}"
'';
meta = with stdenv.lib; {
description = "Descent ${toString ver} using the DXX-Rebirth project engine and game assets from GOG";
homepage = https://www.dxx-rebirth.com/;
license = with licenses; [ free unfree ];
maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; linux;
hydraPlatforms = [];
};
};
in {
d1x-rebirth-full = generic 1 descent1-assets;
d2x-rebirth-full = generic 2 descent2-assets;
}
|