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

49 lines
1.2 KiB
Nix
Raw Normal View History

2018-05-22 13:52:54 +00:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtx11extras,
qttools, qtsvg, libqtxdg, polkit-qt, kwindowsystem, xorg }:
2016-10-03 21:46:35 +00:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "liblxqt";
2018-05-22 13:52:54 +00:00
version = "0.13.0";
2016-10-03 21:46:35 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 21:46:35 +00:00
repo = pname;
rev = version;
2018-05-22 13:52:54 +00:00
sha256 = "1lbvnx6gg15k7fy1bnv5sjji659f603glblcl8c9psh0m1cjdbll";
2016-10-03 21:46:35 +00:00
};
nativeBuildInputs = [
cmake
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2016-10-03 21:46:35 +00:00
];
buildInputs = [
2017-02-25 15:44:29 +00:00
qtx11extras
qttools
qtsvg
2018-05-22 13:52:54 +00:00
polkit-qt
2017-02-25 15:44:29 +00:00
kwindowsystem
libqtxdg
2016-10-03 21:46:35 +00:00
xorg.libXScrnSaver
];
cmakeFlags = [
"-DPULL_TRANSLATIONS=NO"
"-DLXQT_ETC_XDG_DIR=/run/current-system/sw/etc/xdg"
];
2018-05-22 13:52:54 +00:00
2016-10-03 21:46:35 +00:00
patchPhase = ''
sed -i 's|set(LXQT_SHARE_DIR .*)|set(LXQT_SHARE_DIR "/run/current-system/sw/share/lxqt")|' CMakeLists.txt
2018-05-22 13:52:54 +00:00
sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt
2016-10-03 21:46:35 +00:00
'';
2018-05-22 13:52:54 +00:00
2016-10-03 21:46:35 +00:00
meta = with stdenv.lib; {
description = "Core utility library for all LXQt components";
homepage = https://github.com/lxqt/liblxqt;
2016-10-03 21:46:35 +00:00
license = licenses.lgpl21Plus;
platforms = with platforms; unix;
2017-02-19 11:02:25 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 21:46:35 +00:00
};
}