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