2021-04-26 19:14:03 +00:00
|
|
|
{ mkDerivation, extra-cmake-modules, gtk3, qtsvg, hicolor-icon-theme }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkDerivation {
|
2022-04-15 01:41:22 +00:00
|
|
|
pname = "breeze-icons";
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules gtk3 ];
|
|
|
|
buildInputs = [ qtsvg ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
outputs = [ "out" ]; # only runtime outputs
|
|
|
|
postInstall = ''
|
|
|
|
gtk-update-icon-cache "''${out:?}/share/icons/breeze"
|
|
|
|
gtk-update-icon-cache "''${out:?}/share/icons/breeze-dark"
|
|
|
|
'';
|
|
|
|
}
|