2019-09-12 10:47:48 -04:00
|
|
|
{ mkDerivation, lib, extra-cmake-modules, gtk3, qtsvg, hicolor-icon-theme }:
|
2016-04-21 10:32:21 -05:00
|
|
|
|
2017-05-15 12:05:35 -05:00
|
|
|
mkDerivation {
|
2016-04-21 10:32:21 -05:00
|
|
|
name = "breeze-icons";
|
2016-07-30 09:36:52 -05:00
|
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
2017-07-16 07:42:48 -05:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules gtk3 ];
|
2016-07-30 17:10:30 -05:00
|
|
|
buildInputs = [ qtsvg ];
|
2019-09-12 10:47:48 -04:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
2017-05-22 13:49:07 -05:00
|
|
|
outputs = [ "out" ]; # only runtime outputs
|
2017-07-16 07:42:48 -05:00
|
|
|
postInstall = ''
|
|
|
|
gtk-update-icon-cache "''${out:?}/share/icons/breeze"
|
|
|
|
gtk-update-icon-cache "''${out:?}/share/icons/breeze-dark"
|
|
|
|
'';
|
2016-04-21 10:32:21 -05:00
|
|
|
}
|