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

46 lines
1.0 KiB
Nix
Raw Normal View History

2016-10-03 21:46:35 +00:00
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt, xorg }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "liblxqt";
2017-02-19 11:02:25 +00:00
version = "0.11.1";
2016-10-03 21:46:35 +00:00
src = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 11:02:25 +00:00
sha256 = "0dcsgj0qr4589wsibs6fdza4ncqavrhykd05d25rs78pa94lvvh5";
2016-10-03 21:46:35 +00:00
};
nativeBuildInputs = [
cmake
2017-02-19 11:02:25 +00:00
lxqt.lxqt-build-tools
2016-10-03 21:46:35 +00:00
];
buildInputs = [
qt5.qtx11extras
qt5.qttools
qt5.qtsvg
kde5.kwindowsystem
lxqt.libqtxdg
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 21:46:35 +00:00
};
}