lol

libsForQt5.kjs: remove pcre dependency (#411052)

authored by

K900 and committed by
GitHub
017dddc5 c0b2b17f

+7 -2
+7 -2
pkgs/development/libraries/kde-frameworks/kjs.nix
··· 1 1 { 2 + lib, 2 3 mkDerivation, 3 4 extra-cmake-modules, 4 5 kdoctools, 5 - pcre, 6 6 qtbase, 7 7 }: 8 8 ··· 13 13 kdoctools 14 14 ]; 15 15 buildInputs = [ 16 - pcre 17 16 qtbase 17 + ]; 18 + cmakeFlags = [ 19 + # this can break stuff, see: 20 + # https://invent.kde.org/frameworks/kjs/-/blob/3c663ad8ac16f8982784a5ebd5d9200e7aa07936/CMakeLists.txt#L36-46 21 + # However: It shouldn't break much considering plasma 5 is planned to be removed. 22 + (lib.cmakeBool "KJS_FORCE_DISABLE_PCRE" true) 18 23 ]; 19 24 }