2019-11-24 12:29:35 +01:00
|
|
|
{ mkDerivation
|
2021-01-25 09:26:54 +01:00
|
|
|
, lib
|
2021-01-17 06:49:22 +01:00
|
|
|
, pkg-config
|
2019-11-24 12:29:35 +01:00
|
|
|
, zlib
|
|
|
|
, qtbase
|
|
|
|
, qtsvg
|
|
|
|
, qttools
|
|
|
|
, qtmultimedia
|
|
|
|
, qmake
|
|
|
|
, fetchurl
|
2018-09-08 14:19:24 +02:00
|
|
|
}:
|
|
|
|
|
2019-11-24 12:29:35 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "chessx";
|
2022-02-11 03:28:26 +01:00
|
|
|
version = "1.5.7";
|
2018-09-08 14:19:24 +02:00
|
|
|
|
2015-12-14 00:51:05 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/chessx/chessx-${version}.tgz";
|
2022-02-11 03:28:26 +01:00
|
|
|
sha256 = "sha256-wadIO3iNvj8LgIzExHTmeXxXnWOI+ViLrdhAlzZ79Jw=";
|
2015-12-14 00:51:05 +01:00
|
|
|
};
|
2018-09-08 14:19:24 +02:00
|
|
|
|
2019-11-24 12:29:35 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 06:49:22 +01:00
|
|
|
pkg-config
|
2019-11-24 12:29:35 +01:00
|
|
|
qmake
|
|
|
|
];
|
|
|
|
|
2015-12-14 00:51:05 +01:00
|
|
|
buildInputs = [
|
2018-09-08 14:19:24 +02:00
|
|
|
qtbase
|
2019-11-24 12:29:35 +01:00
|
|
|
qtmultimedia
|
2018-09-08 14:19:24 +02:00
|
|
|
qtsvg
|
|
|
|
qttools
|
|
|
|
zlib
|
2015-12-14 00:51:05 +01:00
|
|
|
];
|
2018-09-08 14:19:24 +02:00
|
|
|
|
2016-12-30 18:12:53 +01:00
|
|
|
# RCC: Error in 'resources.qrc': Cannot find file 'i18n/chessx_da.qm'
|
2017-12-05 15:53:43 +01:00
|
|
|
enableParallelBuilding = false;
|
2016-12-30 18:12:53 +01:00
|
|
|
|
2015-12-14 00:51:05 +01:00
|
|
|
installPhase = ''
|
2018-09-08 14:19:24 +02:00
|
|
|
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
|
2015-12-14 00:51:05 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://chessx.sourceforge.net/";
|
2020-10-26 05:08:40 +01:00
|
|
|
description = "Browse and analyse chess games";
|
2015-12-14 00:51:05 +01:00
|
|
|
license = licenses.gpl2;
|
2019-11-24 12:29:35 +01:00
|
|
|
maintainers = [ maintainers.luispedro ];
|
2018-09-08 14:19:24 +02:00
|
|
|
platforms = platforms.linux;
|
2015-12-14 00:51:05 +01:00
|
|
|
};
|
|
|
|
}
|