2020-04-25 18:01:05 +01:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2020-04-25 18:01:05 +01:00
|
|
|
, lxqt-build-tools
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtsvg
|
|
|
|
, qtx11extras
|
|
|
|
, kwindowsystem
|
|
|
|
, liblxqt
|
|
|
|
, libqtxdg
|
2021-04-16 21:32:41 +01:00
|
|
|
, procps
|
2020-04-25 18:01:05 +01:00
|
|
|
, xorg
|
|
|
|
, xdg-user-dirs
|
2020-04-26 15:53:59 +01:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 18:01:05 +01:00
|
|
|
}:
|
2016-10-03 23:00:54 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:00:54 +01:00
|
|
|
pname = "lxqt-session";
|
2022-01-03 13:00:36 +00:00
|
|
|
version = "1.0.1";
|
2016-10-03 23:00:54 +01:00
|
|
|
|
2017-11-02 01:59:05 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:00:54 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-01-03 13:00:36 +00:00
|
|
|
sha256 = "6/HTCngjz0GpNAYf66CUiCZtEs5EsBbjDjcObIe3qSk=";
|
2016-10-03 23:00:54 +01:00
|
|
|
};
|
|
|
|
|
2017-02-19 13:33:04 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2017-02-25 15:44:29 +00:00
|
|
|
lxqt-build-tools
|
2017-02-19 13:33:04 +00:00
|
|
|
];
|
2016-10-03 23:00:54 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 15:44:29 +00:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtsvg
|
2017-09-08 21:37:57 +01:00
|
|
|
qtx11extras
|
2017-02-25 15:44:29 +00:00
|
|
|
kwindowsystem
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2021-04-16 21:32:41 +01:00
|
|
|
procps
|
2016-10-03 23:00:54 +01:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
|
|
|
xdg-user-dirs
|
|
|
|
];
|
|
|
|
|
2020-04-26 15:53:59 +01:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxqt/lxqt-session";
|
2021-02-08 14:41:52 +00:00
|
|
|
description = "An alternative session manager ported from the original razor-session";
|
|
|
|
license = licenses.lgpl21Plus;
|
2019-11-02 17:49:35 +00:00
|
|
|
platforms = platforms.linux;
|
2017-02-19 13:33:04 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:00:54 +01:00
|
|
|
};
|
|
|
|
}
|