summary refs log blame commit diff
path: root/pkgs/games/ja2-stracciatella/default.nix
blob: 682021eee69988e33585e3094d4f438e4ebf72ad (plain) (tree)


















                                                                    
{ stdenv, fetchFromGitHub, SDL }:

stdenv.mkDerivation rec {
  version = "0.15.1";
  name = "ja2-stracciatella-${version}";
  src = fetchFromGitHub {
    owner = "ja2-stracciatella";
    repo = "ja2-stracciatella";
    rev = "v${version}";
    sha256 = "0r7j6k7412b3qfb1rnh80s55zhnriw0v03zn5bp3spcqjxh4xhv1";
  };
  enableParallelBuilding = true;
  buildInputs = [ SDL ];
  meta = {
    description = "Jagged Alliance 2, with community fixes";
    license = "SFI Source Code license agreement";
    homepage = "https://ja2-stracciatella.github.io/";
  };
}