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.
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib, mkDerivation, fetchFromGitHub,
|
|
cmake, pkgconfig, lxqt-build-tools,
|
|
qtbase, qttools, qtx11extras, qtsvg, libdbusmenu, kwindowsystem, solid,
|
|
kguiaddons, liblxqt, libqtxdg, lxqt-globalkeys, libsysstat,
|
|
xorg, libstatgrab, lm_sensors, libpulseaudio, alsaLib, menu-cache,
|
|
lxmenu-data, pcre, libXdamage
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "lxqt-panel";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1py3i7qgm6h2iwjwqfjml1rp06s7ls1d7z5i9iizsmfshdzkaq86";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qttools
|
|
qtx11extras
|
|
qtsvg
|
|
libdbusmenu
|
|
kwindowsystem
|
|
solid
|
|
kguiaddons
|
|
liblxqt
|
|
libqtxdg
|
|
lxqt-globalkeys
|
|
libsysstat
|
|
xorg.libpthreadstubs
|
|
xorg.libXdmcp
|
|
libstatgrab
|
|
lm_sensors
|
|
libpulseaudio
|
|
alsaLib
|
|
menu-cache
|
|
lxmenu-data
|
|
pcre
|
|
libXdamage
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "The LXQt desktop panel";
|
|
homepage = https://github.com/lxqt/lxqt-panel;
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|