2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, qtbase
|
|
|
|
, qtsvg
|
|
|
|
, lxqt-build-tools
|
2020-04-26 16:53:59 +02:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 19:01:05 +02:00
|
|
|
}:
|
2016-10-03 23:43:06 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2019-02-06 00:13:21 +01:00
|
|
|
pname = "libqtxdg";
|
2021-11-05 18:35:00 +01:00
|
|
|
version = "3.8.0";
|
2016-10-03 23:43:06 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2019-02-06 00:13:21 +01:00
|
|
|
repo = pname;
|
2016-10-03 23:43:06 +02:00
|
|
|
rev = version;
|
2021-11-05 18:35:00 +01:00
|
|
|
sha256 = "14jrzwdmhgn6bcggmhxx5rdapjzm93cfkjjls3nii1glnkwzncxz";
|
2016-10-03 23:43:06 +02:00
|
|
|
};
|
|
|
|
|
2020-04-25 19:01:05 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
lxqt-build-tools
|
|
|
|
];
|
2016-10-03 23:43:06 +02:00
|
|
|
|
2020-04-25 19:01:05 +02:00
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
qtsvg
|
|
|
|
];
|
2016-10-03 23:43:06 +02:00
|
|
|
|
2017-11-02 02:50:28 +01:00
|
|
|
preConfigure = ''
|
2018-04-03 22:54:38 +02:00
|
|
|
cmakeFlagsArray+=(
|
2020-04-26 22:25:21 +02:00
|
|
|
"-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix/iconengines"
|
2020-05-04 00:53:35 +02:00
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
2018-04-03 22:54:38 +02:00
|
|
|
)
|
2017-11-02 02:50:28 +01:00
|
|
|
'';
|
|
|
|
|
2020-04-26 16:53:59 +02:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/lxqt/libqtxdg";
|
2021-02-08 15:41:52 +01:00
|
|
|
description = "Qt implementation of freedesktop.org xdg specs";
|
|
|
|
license = licenses.lgpl21Plus;
|
2019-11-02 18:49:35 +01:00
|
|
|
platforms = platforms.linux;
|
2017-11-02 02:50:28 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:43:06 +02:00
|
|
|
};
|
|
|
|
}
|