Merge pull request #47690 from romildo/fix.icon-cache

build GTK icon caches for some packages
This commit is contained in:
Matthew Bauer 2018-11-12 17:24:53 -06:00 committed by GitHub
commit a83dc7e331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 51 additions and 17 deletions

View File

@ -1,14 +1,16 @@
{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, gtk3, kdeFrameworks }: { stdenv, fetchFromGitLab, cmake, extra-cmake-modules, gtk3, kdeFrameworks, hicolor-icon-theme }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "maia-icon-theme-${version}"; name = "maia-icon-theme-${version}";
version = "2016-09-16"; version = "2018-02-24";
src = fetchFromGitHub { src = fetchFromGitLab {
owner = "manjaro"; domain = "gitlab.manjaro.org";
repo = "artwork-maia"; group = "artwork";
rev = "f6718cd9c383adb77af54b694c47efa4d581f5b5"; owner = "themes";
sha256 = "0f9l3k9abgg8islzddrxgbxaw6vbai5bvz5qi1v2fzir7ykx7bgj"; repo = "maia";
rev = "b61312cc80cb9d12b0d8a55b3e61668eb6b77d2d";
sha256 = "1g98snlh96z4sqw9sfd7fxgamh45pcj3lh1kcmng7mirvrcn2pam";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -19,10 +21,20 @@ stdenv.mkDerivation rec {
kdeFrameworks.kwindowsystem kdeFrameworks.kwindowsystem
]; ];
buildInputs = [
hicolor-icon-theme
];
postFixup = ''
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Icons based on Breeze and Super Flat Remix"; description = "Icons based on Breeze and Super Flat Remix";
homepage = https://github.com/manjaro/artwork-maia; homepage = https://gitlab.manjaro.org/artwork/themes/maia;
license = licenses.free; # https://github.com/manjaro/artwork-maia/issues/27 license = licenses.lgpl3;
maintainers = with maintainers; [ mounium ]; maintainers = with maintainers; [ mounium ];
platforms = platforms.all; platforms = platforms.all;
}; };

View File

@ -18,6 +18,11 @@ stdenv.mkDerivation rec {
patchShebangs meson/post_install.py patchShebangs meson/post_install.py
''; '';
postInstall = ''
# The cache for Paper-Mono-Dark is missing
gtk-update-icon-cache "$out"/share/icons/Paper-Mono-Dark;
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Modern icon theme designed around bold colours and simple geometric shapes"; description = "Modern icon theme designed around bold colours and simple geometric shapes";
homepage = https://snwh.org/paper; homepage = https://snwh.org/paper;

View File

@ -3,7 +3,7 @@
, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, bullet, luajit , libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, bullet, luajit
, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg , python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg
, dbus, alsaLib, poppler, ghostscript, libraw, libspectre, xineLib, libwebp , dbus, alsaLib, poppler, ghostscript, libraw, libspectre, xineLib, libwebp
, curl, libinput, systemd, mesa_noglu, writeText , curl, libinput, systemd, mesa_noglu, writeText, gtk3
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "0a5907h896pvpix7a6idc2fspzy6d78xrzf84k8y9fyvnd14nxs4"; sha256 = "0a5907h896pvpix7a6idc2fspzy6d78xrzf84k8y9fyvnd14nxs4";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig gtk3 ];
buildInputs = [ openssl zlib lz4 freetype fontconfig SDL libGL mesa_noglu buildInputs = [ openssl zlib lz4 freetype fontconfig SDL libGL mesa_noglu
giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
@ -71,6 +71,9 @@ stdenv.mkDerivation rec {
modules=$(for i in "$out/include/"*/; do printf ' -I''${includedir}/'`basename $i`; done) modules=$(for i in "$out/include/"*/; do printf ' -I''${includedir}/'`basename $i`; done)
substituteInPlace "$out/lib/pkgconfig/efl.pc" --replace 'Cflags: -I''${includedir}/efl-1' \ substituteInPlace "$out/lib/pkgconfig/efl.pc" --replace 'Cflags: -I''${includedir}/efl-1' \
'Cflags: -I''${includedir}/eina-1/eina'"$modules" 'Cflags: -I''${includedir}/eina-1/eina'"$modules"
# build icon cache
gtk-update-icon-cache "$out"/share/icons/Enlightenment-X
''; '';
# EFL applications depend on libcurl, although it is linked at # EFL applications depend on libcurl, although it is linked at

View File

@ -21,6 +21,10 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool ]; nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk3 librsvg pango atk gtk2 gdk_pixbuf gnome3.defaultIconTheme ]; buildInputs = [ gtk3 librsvg pango atk gtk2 gdk_pixbuf gnome3.defaultIconTheme ];
postFixup = ''
gtk-update-icon-cache "$out"/share/icons/HighContrast
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
platforms = platforms.linux; platforms = platforms.linux;
maintainers = gnome3.maintainers; maintainers = gnome3.maintainers;

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoreconfHook, mate, hicolor-icon-theme }: { stdenv, fetchurl, autoreconfHook, gtk3, mate, hicolor-icon-theme }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mate-icon-theme-faenza-${version}"; name = "mate-icon-theme-faenza-${version}";
@ -9,10 +9,16 @@ stdenv.mkDerivation rec {
sha256 = "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna"; sha256 = "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook gtk3 ];
buildInputs = [ mate.mate-icon-theme hicolor-icon-theme ]; buildInputs = [ mate.mate-icon-theme hicolor-icon-theme ];
postInstall = ''
for theme in "$out"/share/icons/*; do
gtk-update-icon-cache "$theme"
done
'';
meta = { meta = {
description = "Faenza icon theme from MATE"; description = "Faenza icon theme from MATE";
homepage = http://mate-desktop.org; homepage = http://mate-desktop.org;

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, intltool, mate, gtk2, gtk_engines, { stdenv, fetchurl, pkgconfig, intltool, mate, gtk2, gtk3,
gtk-engine-murrine, gdk_pixbuf, librsvg }: gtk_engines, gtk-engine-murrine, gdk_pixbuf, librsvg }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mate-themes-${version}"; name = "mate-themes-${version}";
@ -10,12 +10,16 @@ stdenv.mkDerivation rec {
sha256 = "0538bw8qismp16ymxbjk0ww7yjw1ch5v3f3d4vib3770xvgmmcfm"; sha256 = "0538bw8qismp16ymxbjk0ww7yjw1ch5v3f3d4vib3770xvgmmcfm";
}; };
nativeBuildInputs = [ pkgconfig intltool ]; nativeBuildInputs = [ pkgconfig intltool gtk3 ];
buildInputs = [ mate.mate-icon-theme gtk2 gtk_engines gdk_pixbuf librsvg ]; buildInputs = [ mate.mate-icon-theme gtk2 gtk_engines gdk_pixbuf librsvg ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ];
postInstall = ''
gtk-update-icon-cache "$out"/share/icons/ContrastHigh
'';
meta = { meta = {
description = "A set of themes from MATE"; description = "A set of themes from MATE";
homepage = http://mate-desktop.org; homepage = http://mate-desktop.org;