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

51 lines
1.2 KiB
Nix
Raw Normal View History

2017-11-02 01:59:05 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase, qttools, qtsvg, qtx11extras, kwindowsystem, liblxqt, libqtxdg, xorg, xdg-user-dirs }:
2016-10-03 22:00:54 +00:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-session";
2018-05-22 13:53:54 +00:00
version = "0.13.0";
2016-10-03 22:00:54 +00:00
2017-11-02 01:59:05 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:00:54 +00:00
repo = pname;
rev = version;
2018-05-22 13:53:54 +00:00
sha256 = "0ngcrkmfpahii4yibsh03b8v8af93hhqm42kk1nnhczc8dg49mhs";
2016-10-03 22:00:54 +00: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 22:00:54 +00: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 22:00:54 +00:00
xorg.libpthreadstubs
xorg.libXdmcp
xdg-user-dirs
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
2017-11-02 01:59:05 +00:00
postPatch = ''
for dir in autostart config; do
substituteInPlace $dir/CMakeLists.txt \
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
done
'';
2016-10-03 22:00:54 +00:00
meta = with stdenv.lib; {
description = "An alternative session manager ported from the original razor-session";
homepage = https://github.com/lxqt/lxqt-session;
2016-10-03 22:00:54 +00:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 13:33:04 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:00:54 +00:00
};
}