2019-07-19 21:50:45 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, SDL2_ttf, libsodium, pkg-config }:
|
2019-10-21 02:10:52 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.5.0";
|
2019-07-19 21:50:45 +02:00
|
|
|
pname = "devilutionx";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "diasurgical";
|
|
|
|
repo = "devilutionX";
|
2019-10-21 02:10:52 +02:00
|
|
|
rev = version;
|
|
|
|
sha256 = "010hxj129zmsynvizk89vm2y29dcxsfi585czh3f03wfr38rxa6b";
|
2019-07-19 21:50:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${SDL2_ttf}/include/SDL2";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [ libsodium SDL2 SDL2_mixer SDL2_ttf ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
2019-10-21 02:10:52 +02:00
|
|
|
'' + (if stdenv.isDarwin then ''
|
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv devilutionx.app $out/Applications
|
|
|
|
'' else ''
|
2019-07-19 21:50:45 +02:00
|
|
|
mkdir -p $out/bin
|
|
|
|
cp devilutionx $out/bin
|
2019-10-21 02:10:52 +02:00
|
|
|
'') + ''
|
2019-07-19 21:50:45 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/diasurgical/devilutionX";
|
|
|
|
description = "Diablo build for modern operating systems";
|
2019-10-21 02:10:52 +02:00
|
|
|
longDescription = "In order to play this game a copy of diabdat.mpq is required. Place a copy of diabdat.mpq in ~/.local/share/diasurgical/devilution before executing the game.";
|
2019-07-19 21:50:45 +02:00
|
|
|
license = licenses.unlicense;
|
|
|
|
maintainers = [ maintainers.karolchmist ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin ++ platforms.windows;
|
|
|
|
};
|
|
|
|
}
|