Merge pull request #138267 from romildo/fix.lxqt-config

lxqt.lxqt-config: gsettings is a runtime dependence

authored by

José Romildo Malaquias and committed by
GitHub
b2885bbb 3a784c49

+8
+8
pkgs/desktops/lxqt/lxqt-config/default.nix
··· 3 , fetchFromGitHub 4 , cmake 5 , pkg-config 6 , lxqt-build-tools 7 , qtbase 8 , qtx11extras ··· 34 ]; 35 36 buildInputs = [ 37 qtbase 38 qtx11extras 39 qttools ··· 50 xorg.xf86inputlibinput 51 xorg.xf86inputlibinput.dev 52 ]; 53 54 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 55
··· 3 , fetchFromGitHub 4 , cmake 5 , pkg-config 6 + , glib 7 , lxqt-build-tools 8 , qtbase 9 , qtx11extras ··· 35 ]; 36 37 buildInputs = [ 38 + glib.bin 39 qtbase 40 qtx11extras 41 qttools ··· 52 xorg.xf86inputlibinput 53 xorg.xf86inputlibinput.dev 54 ]; 55 + 56 + postPatch = '' 57 + substituteInPlace lxqt-config-appearance/configothertoolkits.cpp \ 58 + --replace 'QStringLiteral("gsettings' \ 59 + 'QStringLiteral("${glib.bin}/bin/gsettings' 60 + ''; 61 62 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 63