53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg, xorg, xdg-user-dirs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lxqt-session";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0s6b0lblb795zz1p7sy677c1iznhmdzc4vw3jkc2agmsrhm7if7s";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qttools
|
|
qtsvg
|
|
qtx11extras
|
|
kwindowsystem
|
|
liblxqt
|
|
libqtxdg
|
|
xorg.libpthreadstubs
|
|
xorg.libXdmcp
|
|
xdg-user-dirs
|
|
];
|
|
|
|
postPatch = ''
|
|
for dir in autostart config; do
|
|
substituteInPlace $dir/CMakeLists.txt \
|
|
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
|
|
done
|
|
|
|
for f in lxqt-{config-session,leave,session}/CMakeLists.txt; do
|
|
substituteInPlace $f \
|
|
--replace "\''${LXQT_TRANSLATIONS_DIR}" "''${out}/share/lxqt/translations"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An alternative session manager ported from the original razor-session";
|
|
homepage = https://github.com/lxqt/lxqt-session;
|
|
license = licenses.lgpl21;
|
|
platforms = with platforms; unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|