lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 13 lines 428 B view raw
1{ mkDerivation, lib, extra-cmake-modules, gtk3, qtsvg }: 2 3mkDerivation { 4 name = "breeze-icons"; 5 meta = { maintainers = [ lib.maintainers.ttuegel ]; }; 6 nativeBuildInputs = [ extra-cmake-modules gtk3 ]; 7 buildInputs = [ qtsvg ]; 8 outputs = [ "out" ]; # only runtime outputs 9 postInstall = '' 10 gtk-update-icon-cache "''${out:?}/share/icons/breeze" 11 gtk-update-icon-cache "''${out:?}/share/icons/breeze-dark" 12 ''; 13}