breeze-icons: add qtsvg as a propagatedBuildInput

+6
+6
pkgs/kde/frameworks/breeze-icons/default.nix
··· 2 mkKdeDerivation, 3 python3, 4 libxml2, 5 }: 6 mkKdeDerivation { 7 pname = "breeze-icons"; ··· 9 extraNativeBuildInputs = [ 10 (python3.withPackages (ps: [ ps.lxml ])) 11 libxml2 12 ]; 13 14 # lots of icons, takes forever, does absolutely nothing
··· 2 mkKdeDerivation, 3 python3, 4 libxml2, 5 + qtsvg, 6 }: 7 mkKdeDerivation { 8 pname = "breeze-icons"; ··· 10 extraNativeBuildInputs = [ 11 (python3.withPackages (ps: [ ps.lxml ])) 12 libxml2 13 + ]; 14 + 15 + # This package contains an SVG icon theme and an API forcing its use 16 + extraPropagatedBuildInputs = [ 17 + qtsvg 18 ]; 19 20 # lots of icons, takes forever, does absolutely nothing