2021-04-03 10:58:22 +00:00
|
|
|
{ mkDerivation, extra-cmake-modules, gtk3, qtsvg, hicolor-icon-theme }:
|
2016-04-21 15:32:21 +00:00
|
|
|
|
2017-05-15 17:05:35 +00:00
|
|
|
mkDerivation {
|
2022-02-23 17:28:27 +00:00
|
|
|
pname = "breeze-icons";
|
2017-07-16 12:42:48 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules gtk3 ];
|
2016-07-30 22:10:30 +00:00
|
|
|
buildInputs = [ qtsvg ];
|
2019-09-12 14:47:48 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
2017-05-22 18:49:07 +00:00
|
|
|
outputs = [ "out" ]; # only runtime outputs
|
2017-07-16 12:42:48 +00:00
|
|
|
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
|
|
|
}
|