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






              

  
                  
                   
                    
 

                                                              
                                                                   
    
 
                       
              


         
                 
          
                

           
        
    
 
                                                                       
                                 
 
                   






                                                        
                       

     
                    
                                                
                                                   
                            
                                            
                                

    
{ mkDerivation
, lib
, pkg-config
, zlib
, qtbase
, qtsvg
, qttools
, qtmultimedia
, qmake
, fetchurl
}:

mkDerivation rec {
  pname = "chessx";
  version = "1.5.6";

  src = fetchurl {
    url = "mirror://sourceforge/chessx/chessx-${version}.tgz";
    sha256 = "sha256-0JpLU0qQnF8aOYxkBlBJov3zBJe8gcy98NlAQSNk0gU=";
  };

  nativeBuildInputs = [
    pkg-config
    qmake
  ];

  buildInputs = [
    qtbase
    qtmultimedia
    qtsvg
    qttools
    zlib
  ];

  # RCC: Error in 'resources.qrc': Cannot find file 'i18n/chessx_da.qm'
  enableParallelBuilding = false;

  installPhase = ''
    runHook preInstall

    mkdir -p "$out/bin"
    mkdir -p "$out/share/applications"
    cp -pr release/chessx "$out/bin"
    cp -pr unix/chessx.desktop "$out/share/applications"

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "http://chessx.sourceforge.net/";
    description = "Browse and analyse chess games";
    license = licenses.gpl2;
    maintainers = [ maintainers.luispedro ];
    platforms = platforms.linux;
  };
}