nixpkgs/pkgs/games/dxx-rebirth/full.nix
Ryan Mulligan b189247ba0 treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
2018-03-24 22:04:25 -07:00

31 lines
943 B
Nix

{ stdenv, makeWrapper
, dxx-rebirth, descent1-assets, descent2-assets }:
let
generic = ver: assets: stdenv.mkDerivation rec {
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;
}