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

47 lines
1.0 KiB
Nix
Raw Normal View History

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