mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
a61bd1e42d
libqtxdg fails to build on darwin. LXQt is a DE for linux so assume darwin is not supported. The platform for some packages that may be useful outside of LXQt (like pcmanfm-qt, lximage-qt and others) and do not depend on libqtxdg are not being changed.
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase,
|
|
qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt,
|
|
libqtxdg, xorg }:
|
|
|
|
mkDerivation rec {
|
|
pname = "lxqt-config";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0x1k08587i2pakxlrj2n0l82r179sfywnzn2cphxiy89r5zpn7vi";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtx11extras
|
|
qttools
|
|
qtsvg
|
|
kwindowsystem
|
|
libkscreen
|
|
liblxqt
|
|
libqtxdg
|
|
xorg.libpthreadstubs
|
|
xorg.libXdmcp
|
|
xorg.libXScrnSaver
|
|
xorg.libxcb
|
|
xorg.libXcursor
|
|
xorg.xf86inputlibinput
|
|
xorg.xf86inputlibinput.dev
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i "/\''${XORG_LIBINPUT_INCLUDE_DIRS}/a ${xorg.xf86inputlibinput.dev}/include/xorg" lxqt-config-input/CMakeLists.txt
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tools to configure LXQt and the underlying operating system";
|
|
homepage = https://github.com/lxqt/lxqt-config;
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
|
|
}
|