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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 03:21:50 +01:00
, pkg-config
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, qtx11extras
, kwindowsystem
, liblxqt
, libqtxdg
2022-05-14 16:51:05 +02:00
, qtxdg-tools
2021-04-16 22:32:41 +02:00
, procps
, xorg
, xdg-user-dirs
, gitUpdater
}:
2016-10-04 00:00:54 +02:00
mkDerivation rec {
2016-10-04 00:00:54 +02:00
pname = "lxqt-session";
2023-04-16 18:53:29 +02:00
version = "1.3.0";
2016-10-04 00:00:54 +02:00
2017-11-02 02:59:05 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-04 00:00:54 +02:00
repo = pname;
rev = version;
2023-04-16 18:53:29 +02:00
sha256 = "jhz1OHnPvjZMSo8+X/pf8rVLjPPSEiE7BDLnhUp/Vbk=";
2016-10-04 00:00:54 +02:00
};
2017-02-19 14:33:04 +01:00
nativeBuildInputs = [
cmake
2021-01-17 03:21:50 +01:00
pkg-config
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2017-02-19 14:33:04 +01:00
];
2016-10-04 00:00:54 +02:00
buildInputs = [
2017-02-25 16:44:29 +01:00
qtbase
qttools
qtsvg
qtx11extras
2017-02-25 16:44:29 +01:00
kwindowsystem
liblxqt
libqtxdg
2022-05-14 16:51:05 +02:00
qtxdg-tools
2021-04-16 22:32:41 +02:00
procps
2016-10-04 00:00:54 +02:00
xorg.libpthreadstubs
xorg.libXdmcp
xdg-user-dirs
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-session";
description = "An alternative session manager ported from the original razor-session";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 15:52:15 +02:00
maintainers = teams.lxqt.members;
2016-10-04 00:00:54 +02:00
};
}