Skip to content

Commit

Permalink
Merge pull request #24362 from romildo/fix.lxqt
Browse files Browse the repository at this point in the history
lxqt-panel: fix for `explicit` (a C++11 keyword) being used as variable
  • Loading branch information
pSub committed Mar 28, 2017
2 parents 91cc357 + e2ad762 commit f870fbc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/desktops/lxqt/core/lxqt-panel/default.nix
@@ -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,
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit f870fbc

Please sign in to comment.