forked from mirrors/nixpkgs
Adding d2x-rebirth, source port of the Descent 2 engine
This commit is contained in:
parent
65c008f653
commit
04d41f95d0
23
pkgs/games/d2x-rebirth/default.nix
Normal file
23
pkgs/games/d2x-rebirth/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{stdenv, fetchurl, scons, pkgconfig, SDL, mesa, physfs, SDL_mixer }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "d2x-rebirth-0.57.3";
|
||||
src = fetchurl {
|
||||
url = "http://www.dxx-rebirth.com/download/dxx/d2x-rebirth_v0.57.3-src.tar.gz";
|
||||
sha256 = "0yyandmxz12bbpnd746nddjlqh5i7dylwm006shixis3w3giz77c";
|
||||
};
|
||||
|
||||
buildInputs = [ scons pkgconfig SDL mesa physfs SDL_mixer ];
|
||||
|
||||
installPhase = ''
|
||||
scons prefix=$out install
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.dxx-rebirth.com/;
|
||||
description = "Source Port of the Descent 2 engine";
|
||||
license = "BSD"; # Parallax license, like BSD I think
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
};
|
||||
}
|
|
@ -8226,6 +8226,8 @@ let
|
|||
|
||||
d1x_rebirth = callPackage ../games/d1x-rebirth { };
|
||||
|
||||
d2x_rebirth = callPackage ../games/d2x-rebirth { };
|
||||
|
||||
eduke32 = callPackage ../games/eduke32 {
|
||||
stdenv = overrideGCC stdenv gcc47;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue