nixpkgs/pkgs/desktops/lxqt/lxqt-session/default.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

2017-11-01 18:59:05 -07:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg, xorg, xdg-user-dirs }:
2016-10-03 15:00:54 -07:00
stdenv.mkDerivation rec {
pname = "lxqt-session";
2019-02-26 13:31:40 -08:00
version = "0.14.1";
2016-10-03 15:00:54 -07:00
2017-11-01 18:59:05 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 15:00:54 -07:00
repo = pname;
rev = version;
2019-02-26 13:31:40 -08:00
sha256 = "0s6b0lblb795zz1p7sy677c1iznhmdzc4vw3jkc2agmsrhm7if7s";
2016-10-03 15:00:54 -07:00
};
2017-02-19 05:33:04 -08:00
nativeBuildInputs = [
cmake
pkgconfig
2017-02-25 07:44:29 -08:00
lxqt-build-tools
2017-02-19 05:33:04 -08:00
];
2016-10-03 15:00:54 -07:00
buildInputs = [
2017-02-25 07:44:29 -08:00
qtbase
qttools
qtsvg
qtx11extras
2017-02-25 07:44:29 -08:00
kwindowsystem
liblxqt
libqtxdg
2016-10-03 15:00:54 -07:00
xorg.libpthreadstubs
xorg.libXdmcp
xdg-user-dirs
];
2017-11-01 18:59:05 -07:00
postPatch = ''
for dir in autostart config; do
substituteInPlace $dir/CMakeLists.txt \
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
done
2019-02-05 15:14:05 -08:00
for f in lxqt-{config-session,leave,session}/CMakeLists.txt; do
substituteInPlace $f \
--replace "\''${LXQT_TRANSLATIONS_DIR}" "''${out}/share/lxqt/translations"
done
2017-11-01 18:59:05 -07:00
'';
2016-10-03 15:00:54 -07:00
meta = with stdenv.lib; {
description = "An alternative session manager ported from the original razor-session";
homepage = https://github.com/lxqt/lxqt-session;
2016-10-03 15:00:54 -07:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 05:33:04 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 15:00:54 -07:00
};
}