1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/lxqt/core/lxqt-session/default.nix

44 lines
1,019 B
Nix
Raw Normal View History

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