1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/desktops/lxqt/lxqt-session/default.nix

59 lines
1 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, pkgconfig
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, qtx11extras
, kwindowsystem
, liblxqt
, libqtxdg
, 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";
2020-04-26 21:25:24 +01:00
version = "0.15.0";
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;
2020-04-26 21:25:24 +01:00
sha256 = "0kbk13dpmr75yd905n30k51cl7srrxz31ma4kacx450qgr5rwawn";
2016-10-03 23:00:54 +01:00
};
2017-02-19 13:33:04 +00:00
nativeBuildInputs = [
cmake
pkgconfig
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
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; {
2016-10-03 23:00:54 +01:00
description = "An alternative session manager ported from the original razor-session";
homepage = "https://github.com/lxqt/lxqt-session";
2016-10-03 23:00:54 +01:00
license = licenses.lgpl21;
platforms = platforms.linux;
2017-02-19 13:33:04 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:00:54 +01:00
};
}