kdeApplications.print-manager: fix build

Just a quick and not pleasant fix until we update
kdeApplications. And that needs to be done very soon.
This commit is contained in:
worldofpeace 2019-11-13 19:46:00 -05:00
parent b4b2253459
commit a20db2bcd3

View file

@ -20,4 +20,10 @@ mkDerivation {
kwidgetsaddons kitemviews kio kwindowsystem plasma-framework qtdeclarative
];
outputs = [ "out" "dev" ];
# Fix build with cups deprecations etc.
# See: https://github.com/NixOS/nixpkgs/issues/73334
NIX_CFLAGS_COMPILE = [
"-Wno-error=deprecated-declarations"
"-Wno-error=format-security"
];
}