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

65 lines
1.1 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";
2021-04-16 21:32:41 +01:00
version = "0.17.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;
2021-04-16 21:32:41 +01:00
sha256 = "0b9jihmsqgdfdsisz15j3p53fgf1w30s8irj9zjh52fsj58p924p";
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
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-config";
description = "Tools to configure LXQt and the underlying operating system";
license = licenses.lgpl21Plus;
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
}