krunner-pass: fix cmake configuration

K900 e3cf5440 5fd09198

+6 -2
+6 -2
pkgs/tools/security/krunner-pass/default.nix
··· 42 42 ''-DNIXPKGS_PASS=\"${lib.getBin pass}/bin/pass\"'' 43 43 ]; 44 44 45 - # there are *lots* of pointless warnings in v1.3.0 46 - cmakeFlags = [ "-Wno-dev" ]; 45 + cmakeFlags = [ 46 + # there are *lots* of pointless warnings in v1.3.0 47 + "-Wno-dev" 48 + # required for kf5auth to work correctly 49 + "-DCMAKE_POLICY_DEFAULT_CMP0012=NEW" 50 + ]; 47 51 48 52 meta = with lib; { 49 53 description = "Integrates krunner with pass the unix standard password manager (https://www.passwordstore.org/)";