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