nixpkgs/pkgs/desktops/lxqt/liblxqt/default.nix

56 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtx11extras
, qttools
, qtsvg
, libqtxdg
, polkit-qt
, kwindowsystem
, xorg
, lxqtUpdateScript
}:
2016-10-03 14:46:35 -07:00
mkDerivation rec {
2016-10-03 14:46:35 -07:00
pname = "liblxqt";
2020-05-29 04:09:05 -07:00
version = "0.15.1";
2016-10-03 14:46:35 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 14:46:35 -07:00
repo = pname;
rev = version;
2020-05-29 04:09:05 -07:00
sha256 = "01vfy7r7h0c5axlwqwsxg3pzdlaicnf2474bcq3jwk12gipvj5sd";
2016-10-03 14:46:35 -07:00
};
nativeBuildInputs = [
cmake
2017-02-25 07:44:29 -08:00
lxqt-build-tools
2016-10-03 14:46:35 -07:00
];
buildInputs = [
2017-02-25 07:44:29 -08:00
qtx11extras
qttools
qtsvg
2018-05-22 06:52:54 -07:00
polkit-qt
2017-02-25 07:44:29 -08:00
kwindowsystem
libqtxdg
2016-10-03 14:46:35 -07:00
xorg.libXScrnSaver
];
2019-02-05 15:13:21 -08:00
postPatch = ''
2018-05-22 06:52:54 -07:00
sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt
2016-10-03 14:46:35 -07:00
'';
2018-05-22 06:52:54 -07:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
2016-10-03 14:46:35 -07:00
description = "Core utility library for all LXQt components";
homepage = "https://github.com/lxqt/liblxqt";
2016-10-03 14:46:35 -07:00
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2017-02-19 03:02:25 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 14:46:35 -07:00
};
}