Merge pull request #24362 from romildo/fix.lxqt

lxqt-panel: fix for `explicit` (a C++11 keyword) being used as variable
This commit is contained in:
Pascal Wittmann 2017-03-28 17:41:02 +02:00 committed by GitHub
commit f870fbc8ae

@ -1,5 +1,5 @@
{
stdenv, fetchFromGitHub, standardPatch,
stdenv, fetchFromGitHub, fetchurl, standardPatch,
cmake, pkgconfig, lxqt-build-tools,
qtbase, qttools, qtx11extras, qtsvg, libdbusmenu, kwindowsystem, solid,
kguiaddons, liblxqt, libqtxdg, lxqt-common, lxqt-globalkeys, libsysstat,
@ -49,6 +49,13 @@ stdenv.mkDerivation rec {
lxmenu-data
];
patches = [
(fetchurl {
url = https://github.com/lxde/lxqt-panel/commit/ec62109e0fa678875a9b10fc6f1975267432712d.patch;
sha256 = "1ywwk8gb6gbvs8z9gwgsnb13z1jvyvjij349nq7ij6iyhyld0jlr";
})
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
postPatch = standardPatch;