2016-10-04 00:00:54 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, xorg, xdg-user-dirs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "lxqt-session";
|
2017-02-19 14:33:04 +01:00
|
|
|
version = "0.11.1";
|
2016-10-04 00:00:54 +02:00
|
|
|
|
|
|
|
srcs = fetchFromGitHub {
|
|
|
|
owner = "lxde";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2017-02-19 14:33:04 +01:00
|
|
|
sha256 = "14ahgix5jsv7fkmvz1imw9a12ygxccqrdxp9yfbpin1az9q1n1qv";
|
2016-10-04 00:00:54 +02:00
|
|
|
};
|
|
|
|
|
2017-02-19 14:33:04 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
lxqt.lxqt-build-tools
|
|
|
|
];
|
2016-10-04 00:00:54 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
qt5.qtbase
|
|
|
|
qt5.qttools
|
|
|
|
qt5.qtsvg
|
|
|
|
kde5.kwindowsystem
|
|
|
|
lxqt.liblxqt
|
|
|
|
lxqt.libqtxdg
|
2017-02-19 14:33:04 +01:00
|
|
|
lxqt.lxqt-common
|
2016-10-04 00:00:54 +02:00
|
|
|
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;
|
|
|
|
platforms = with platforms; unix;
|
2017-02-19 14:33:04 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-04 00:00:54 +02:00
|
|
|
};
|
|
|
|
}
|