chessx: 1.5.8 -> 1.6.0

This commit is contained in:
éclairevoyant 2023-08-18 22:53:22 -04:00
parent 5eefad900f
commit c0b3521ea9
No known key found for this signature in database
GPG key ID: E3813AEAA02DB54B

View file

@ -1,4 +1,4 @@
{ mkDerivation { stdenv
, lib , lib
, pkg-config , pkg-config
, zlib , zlib
@ -7,21 +7,24 @@
, qttools , qttools
, qtmultimedia , qtmultimedia
, qmake , qmake
, fetchpatch
, fetchurl , fetchurl
, wrapQtAppsHook
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "chessx"; pname = "chessx";
version = "1.5.8"; version = "1.6.0";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/chessx/chessx-${version}.tgz"; url = "mirror://sourceforge/chessx/chessx-${version}.tgz";
sha256 = "sha256-ev+tK1CHLFt/RvmzyPVZ2c0nxfRwwb9ke7uTmm7REaM="; hash = "sha256-76YOe1WpB+vdEoEKGTHeaWJLpCVE4RoyYu1WLy3Dxhg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
qmake qmake
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
@ -32,25 +35,39 @@ mkDerivation rec {
zlib zlib
]; ];
# RCC: Error in 'resources.qrc': Cannot find file 'i18n/chessx_da.qm' patches =
enableParallelBuilding = false; # needed to backport patches to successfully build, due to broken release
let
repo = "https://github.com/Isarhamster/chessx/";
in
[
(fetchpatch {
url = "${repo}/commit/9797d46aa28804282bd58ce139b22492ab6881e6.diff";
hash = "sha256-RnIf6bixvAvyp1CKuri5LhgYFqhDNiAVYWUmSUDMgVw=";
})
(fetchpatch {
url = "${repo}/commit/4fab4d2f649d1cae2b54464c4e28337d1f20c214.diff";
hash = "sha256-EJVHricN+6uabKLfn77t8c7JjO7tMmZGsj7ZyQUGcXA=";
})
];
enableParallelBuilding = true;
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p "$out/bin" install -Dm555 release/chessx -t "$out/bin"
mkdir -p "$out/share/applications" install -Dm444 unix/chessx.desktop -t "$out/share/applications"
cp -pr release/chessx "$out/bin"
cp -pr unix/chessx.desktop "$out/share/applications"
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = with lib; {
homepage = "http://chessx.sourceforge.net/"; homepage = "https://chessx.sourceforge.io/";
description = "Browse and analyse chess games"; description = "Browse and analyse chess games";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = [ maintainers.luispedro ]; maintainers = with maintainers; [ eclairevoyant luispedro ];
platforms = platforms.linux; platforms = platforms.linux;
mainProgram = "chessx";
}; };
} }