ksmoothdock: patch out -Werror

This commit is contained in:
K900 2022-11-15 10:30:16 +03:00
parent 360080de17
commit 48e236c7e0

View file

@ -18,6 +18,12 @@ mkDerivation rec {
sha256 = "sha256-hO7xgjFMFrEhQs3oc2peFTjSVEDsl7Ma/TeVybEZMEk=";
};
# Upstream seems dead and there are new deprecation warnings in KF5.100
# Remember, kids: friends don't let friends build with -Werror
postPatch = ''
substituteInPlace src/CMakeLists.txt --replace "-Werror" ""
'';
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [ kactivities qtbase ];