summary refs log blame commit diff
path: root/pkgs/games/instead-launcher/default.nix
blob: 1f03a72390ebbe322365a816ef8688d7012a6c63 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                            

                         
                             
 
                    




                              
                                                                    











                                                                    
                    
                                                                     





                                                                   
{ lib, stdenv, fetchFromGitHub, instead, qmake4Hook, zlib }:

stdenv.mkDerivation rec {
  pname = "instead-launcher";

  version = "0.7.0";

  src = fetchFromGitHub {
    owner = "instead-hub";
    repo = "instead-launcher";
    rev = version;
    sha256 = "1svy8i8anspway01pnz2cy69aad03anvkq04wrdfv1h9c34gbvb9";
  };

  patches = [ ./path.patch ];

  postPatch = ''
    substituteInPlace platform.cpp --subst-var-by instead ${instead}
  '';

  nativeBuildInputs = [ qmake4Hook ];

  buildInputs = [ zlib ];

  meta = with lib; {
    homepage = "https://instead.syscall.ru/wiki/en/instead-launcher";
    description = "Install and play games from INSTEAD repository";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ orivej ];
  };
}