46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
|
{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, SDL2_ttf, libsodium, pkg-config }:
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "1.0.1";
|
||
|
pname = "devilutionx";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "diasurgical";
|
||
|
repo = "devilutionX";
|
||
|
rev = version;
|
||
|
sha256 = "1jvjlch9ql5s5jx9g5y5pkc2xn62199qylsmzpqzx1jc3k2vmw5i";
|
||
|
};
|
||
|
|
||
|
NIX_CFLAGS_COMPILE = [
|
||
|
"-I${SDL2_ttf}/include/SDL2"
|
||
|
''-DTTF_FONT_PATH="${placeholder "out"}/share/fonts/truetype/CharisSILB.ttf"''
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config cmake ];
|
||
|
buildInputs = [ libsodium SDL2 SDL2_mixer SDL2_ttf ];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
'' + (if stdenv.isDarwin then ''
|
||
|
mkdir -p $out/Applications
|
||
|
mv devilutionx.app $out/Applications
|
||
|
'' else ''
|
||
|
install -Dm755 -t $out/bin devilutionx
|
||
|
install -Dt $out/share/fonts/truetype ../Packaging/resources/CharisSILB.ttf
|
||
|
|
||
|
# TODO: icons and .desktop (see Packages/{debian,fedora}/*)
|
||
|
'') + ''
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/diasurgical/devilutionX";
|
||
|
description = "Diablo build for modern operating systems";
|
||
|
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.";
|
||
|
license = licenses.unlicense;
|
||
|
maintainers = [ maintainers.karolchmist ];
|
||
|
platforms = platforms.linux ++ platforms.darwin ++ platforms.windows;
|
||
|
};
|
||
|
}
|