lxqt-session: init at 0.11.0
This commit is contained in:
parent
fa59539b69
commit
59dac76153
38
pkgs/desktops/lxqt/core/lxqt-session/default.nix
Normal file
38
pkgs/desktops/lxqt/core/lxqt-session/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, xorg, xdg-user-dirs }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "lxqt-session";
|
||||||
|
version = "0.11.0";
|
||||||
|
|
||||||
|
srcs = fetchFromGitHub {
|
||||||
|
owner = "lxde";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1vb8mcy6z1irnd977x5425mbp4c7yc9dhk5552isqss1qb44hpn4";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qt5.qtbase
|
||||||
|
qt5.qttools
|
||||||
|
qt5.qtsvg
|
||||||
|
kde5.kwindowsystem
|
||||||
|
lxqt.liblxqt
|
||||||
|
lxqt.libqtxdg
|
||||||
|
xorg.libpthreadstubs
|
||||||
|
xorg.libXdmcp
|
||||||
|
xdg-user-dirs
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An alternative session manager ported from the original razor-session";
|
||||||
|
homepage = https://github.com/lxde/lxqt-session;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
@ -43,5 +43,7 @@ let
|
|||||||
lxqt-openssh-askpass = callPackage ./core/lxqt-openssh-askpass { };
|
lxqt-openssh-askpass = callPackage ./core/lxqt-openssh-askpass { };
|
||||||
lxqt-policykit = callPackage ./core/lxqt-policykit { };
|
lxqt-policykit = callPackage ./core/lxqt-policykit { };
|
||||||
lxqt-powermanagement = callPackage ./core/lxqt-powermanagement { };
|
lxqt-powermanagement = callPackage ./core/lxqt-powermanagement { };
|
||||||
|
lxqt-qtplugin = callPackage ./core/lxqt-qtplugin { };
|
||||||
|
lxqt-session = callPackage ./core/lxqt-session { };
|
||||||
|
|
||||||
in self
|
in self
|
||||||
|
Loading…
Reference in New Issue
Block a user