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