1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 17:23:25 -04:00
nixpkgs/pkgs/desktops/lxqt/libqtxdg/default.nix

48 lines
905 B
Nix
Raw Normal View History

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