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

45 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg, lxqt-common, xorg, xdg-user-dirs }:
2016-10-04 00:00:54 +02:00
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
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
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
};
}