summary refs log blame commit diff
path: root/pkgs/games/endless-sky/default.nix
blob: 40dbd1d33a77de53777fc3c4633a85a113a7b0b4 (plain) (tree)
1
2
3
4
5
6
                         
                                                    


   
                    








                                  
                                                                    




                                
                                                















                                                                                                              
                                              






                                                   
{ stdenv, fetchFromGitHub
, SDL2, libpng, libjpeg, glew, openal, scons, libmad
}:

let
  version = "0.9.8";

in
stdenv.mkDerivation rec {
  name = "endless-sky-${version}";

  src = fetchFromGitHub {
    owner = "endless-sky";
    repo = "endless-sky";
    rev = "v${version}";
    sha256 = "0i36lawypikbq8vvzfis1dn7yf6q0d2s1cllshfn7kmjb6pqfi6c";
  };

  enableParallelBuilding = true;

  buildInputs = [
    SDL2 libpng libjpeg glew openal scons libmad
  ];

  patches = [
    ./fixes.patch
  ];

  buildPhase = ''
    scons -j$NIX_BUILD_CORES PREFIX="$out"
  '';

  installPhase = ''
    scons -j$NIX_BUILD_CORES install PREFIX="$out"
  '';

  meta = with stdenv.lib; {
    description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
    homepage = https://endless-sky.github.io/;
    license = with licenses; [
      gpl3Plus cc-by-sa-30 cc-by-sa-40 publicDomain
    ];
    maintainers = with maintainers; [ lheckemann ];
    platforms = with platforms; allBut darwin;
  };
}