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