summary refs log blame commit diff
path: root/pkgs/games/devilutionx/default.nix
blob: 3241e6dd387f75ea9877918d5294b865d6c279ba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                      

                         




                          

                                                                    



                                                    





                                                       



                                        

                           
          






                                                              
                                                                                                                                                                                      




                                                                         
{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, SDL2_ttf, libsodium, pkg-config }:
stdenv.mkDerivation rec {
  version = "0.5.0";
  pname = "devilutionx";

  src = fetchFromGitHub {
    owner = "diasurgical";
    repo = "devilutionX";
    rev = version;
    sha256 = "010hxj129zmsynvizk89vm2y29dcxsfi585czh3f03wfr38rxa6b";
  };

  NIX_CFLAGS_COMPILE = "-I${SDL2_ttf}/include/SDL2";

  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 ''
    mkdir -p $out/bin
    cp devilutionx $out/bin
  '') + ''

    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;
  };
}