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

69 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt-build-tools
, qtbase
, qtx11extras
, qttools
, qtsvg
, kwindowsystem
, libkscreen
, liblxqt
, libqtxdg
, xorg
, lxqtUpdateScript
}:
2016-10-03 22:53:48 +01:00
mkDerivation rec {
2016-10-03 22:53:48 +01:00
pname = "lxqt-config";
2020-12-15 22:40:42 +00:00
version = "0.16.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;
2020-12-15 22:40:42 +00:00
sha256 = "1ppkkz7rg5ddlyk1ikh2s3g7nbb0wnpl0lldg9j68l76d61sfm8z";
2016-10-03 22:53:48 +01:00
};
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
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
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
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
}