e2ad762394
It is needed to override "explicit" as this is a C++ keyword. But it
is used as variable name in xkb.h. This is causing a failure in C++
compile time. Similar bug here:
https://bugs.freedesktop.org/show_bug.cgi?id=74080
Workaround from
ec62109e0f
.
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{
|
|
stdenv, fetchFromGitHub, fetchurl, standardPatch,
|
|
cmake, pkgconfig, lxqt-build-tools,
|
|
qtbase, qttools, qtx11extras, qtsvg, libdbusmenu, kwindowsystem, solid,
|
|
kguiaddons, liblxqt, libqtxdg, lxqt-common, lxqt-globalkeys, libsysstat,
|
|
xorg, libstatgrab, lm_sensors, libpulseaudio, alsaLib, menu-cache,
|
|
lxmenu-data
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "lxqt-panel";
|
|
version = "0.11.1";
|
|
|
|
srcs = fetchFromGitHub {
|
|
owner = "lxde";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "097rivly61i99v0w9a3dgbwbc4c5x9nh3jl0n94dix1qgd4w983y";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qttools
|
|
qtx11extras
|
|
qtsvg
|
|
libdbusmenu
|
|
kwindowsystem
|
|
solid
|
|
kguiaddons
|
|
liblxqt
|
|
libqtxdg
|
|
lxqt-common
|
|
lxqt-globalkeys
|
|
libsysstat
|
|
xorg.libpthreadstubs
|
|
xorg.libXdmcp
|
|
libstatgrab
|
|
lm_sensors
|
|
libpulseaudio
|
|
alsaLib
|
|
menu-cache
|
|
lxmenu-data
|
|
];
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = https://github.com/lxde/lxqt-panel/commit/ec62109e0fa678875a9b10fc6f1975267432712d.patch;
|
|
sha256 = "1ywwk8gb6gbvs8z9gwgsnb13z1jvyvjij349nq7ij6iyhyld0jlr";
|
|
})
|
|
];
|
|
|
|
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
|
|
|
postPatch = standardPatch;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The LXQt desktop panel";
|
|
homepage = https://github.com/lxde/lxqt-panel;
|
|
license = licenses.lgpl21;
|
|
platforms = with platforms; unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|