Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 553 B view raw
1{ 2 mkKdeDerivation, 3 python3, 4 libxml2, 5 qtsvg, 6}: 7mkKdeDerivation { 8 pname = "breeze-icons"; 9 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 21 dontStrip = true; 22 23 # known upstream issue: https://invent.kde.org/frameworks/breeze-icons/-/commit/135e59fb4395c1779a52ab113cc70f7baa53fd5d 24 dontCheckForBrokenSymlinks = true; 25}