nixpkgs/pkgs/development/libraries/kde-frameworks/breeze-icons.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
476 B
Nix
Raw Normal View History

{ mkDerivation, extra-cmake-modules, gtk3, qtsvg, hicolor-icon-theme }:
2016-04-21 15:32:21 +00:00
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "breeze-icons";
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"
'';
2016-04-21 15:32:21 +00:00
}