3
0
Fork 0
forked from mirrors/nixpkgs
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.

61 lines
1 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, qtx11extras
, kwindowsystem
, liblxqt
, libqtxdg
2021-04-16 21:32:41 +01:00
, procps
, xorg
, xdg-user-dirs
, lxqtUpdateScript
}:
2016-10-03 23:00:54 +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 {
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
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
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
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;
2017-02-19 13:33:04 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:00:54 +01:00
};
}