chessx: 1.3.2 -> 1.4.0 (#17270)

authored by Kranium Gikos Mendoza and committed by Rok Garbas 7a88636e 68de205c

+4 -3
+4 -3
pkgs/games/chessx/default.nix
··· 1 { stdenv, pkgconfig, zlib, qtbase, qtsvg, qttools, qtmultimedia, qmakeHook, fetchurl }: 2 stdenv.mkDerivation rec { 3 name = "chessx-${version}"; 4 - version = "1.3.2"; 5 src = fetchurl { 6 url = "mirror://sourceforge/chessx/chessx-${version}.tgz"; 7 - sha256 = "b136cf56d37d34867cdb9538176e1703b14f61b3384885b6f100580d0af0a3ff"; 8 }; 9 buildInputs = [ 10 stdenv ··· 19 20 enableParallelBuilding = true; 21 installPhase = '' 22 mkdir -p "$out/bin" 23 mkdir -p "$out/share/applications" 24 cp -pr release/chessx "$out/bin" 25 cp -pr unix/chessx.desktop "$out/share/applications" 26 ''; 27 28 meta = with stdenv.lib; { ··· 30 description = "ChessX allows you to browse and analyse chess games"; 31 license = licenses.gpl2; 32 maintainers = [maintainers.luispedro]; 33 - broken = true; 34 }; 35 }
··· 1 { stdenv, pkgconfig, zlib, qtbase, qtsvg, qttools, qtmultimedia, qmakeHook, fetchurl }: 2 stdenv.mkDerivation rec { 3 name = "chessx-${version}"; 4 + version = "1.4.0"; 5 src = fetchurl { 6 url = "mirror://sourceforge/chessx/chessx-${version}.tgz"; 7 + sha256 = "1x10c9idj2qks8xk9dy7aw3alc5w7z1kvv6dnahs0428j0sp4a74"; 8 }; 9 buildInputs = [ 10 stdenv ··· 19 20 enableParallelBuilding = true; 21 installPhase = '' 22 + runHook preInstall 23 mkdir -p "$out/bin" 24 mkdir -p "$out/share/applications" 25 cp -pr release/chessx "$out/bin" 26 cp -pr unix/chessx.desktop "$out/share/applications" 27 + runHook postInstall 28 ''; 29 30 meta = with stdenv.lib; { ··· 32 description = "ChessX allows you to browse and analyse chess games"; 33 license = licenses.gpl2; 34 maintainers = [maintainers.luispedro]; 35 }; 36 }