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

66 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, pkgconfig
, lxqt-build-tools
, qtbase
, qtx11extras
, qttools
, qtsvg
, kwindowsystem
, libkscreen
, liblxqt
, libqtxdg
, xorg
}:
2016-10-03 22:53:48 +01:00
mkDerivation rec {
2016-10-03 22:53:48 +01:00
pname = "lxqt-config";
2019-02-26 21:31:09 +00:00
version = "0.14.1";
2016-10-03 22:53:48 +01:00
2017-11-02 01:54:59 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:53:48 +01:00
repo = pname;
rev = version;
2019-02-26 21:31:09 +00:00
sha256 = "0x1k08587i2pakxlrj2n0l82r179sfywnzn2cphxiy89r5zpn7vi";
2016-10-03 22:53:48 +01:00
};
nativeBuildInputs = [
cmake
pkgconfig
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2017-02-19 13:05:14 +00:00
];
2016-10-03 22:53:48 +01:00
buildInputs = [
2017-02-25 15:44:29 +00:00
qtbase
qtx11extras
qttools
qtsvg
kwindowsystem
libkscreen
liblxqt
libqtxdg
2016-10-03 22:53:48 +01:00
xorg.libpthreadstubs
xorg.libXdmcp
xorg.libXScrnSaver
xorg.libxcb
xorg.libXcursor
2019-02-05 23:13:32 +00:00
xorg.xf86inputlibinput
xorg.xf86inputlibinput.dev
2016-10-03 22:53:48 +01:00
];
2017-11-02 01:54:59 +00:00
postPatch = ''
2019-02-05 23:13:32 +00:00
sed -i "/\''${XORG_LIBINPUT_INCLUDE_DIRS}/a ${xorg.xf86inputlibinput.dev}/include/xorg" lxqt-config-input/CMakeLists.txt
2017-11-02 01:54:59 +00:00
'';
2016-10-03 22:53:48 +01:00
meta = with lib; {
2016-10-03 22:53:48 +01:00
description = "Tools to configure LXQt and the underlying operating system";
homepage = "https://github.com/lxqt/lxqt-config";
2016-10-03 22:53:48 +01:00
license = licenses.lgpl21;
platforms = platforms.linux;
2017-02-19 13:05:14 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:53:48 +01:00
};
2017-08-23 11:17:32 +01:00
2016-10-03 22:53:48 +01:00
}