gtk3.setupHook: clear icon-theme.cache in preFixup (#68552)
gtk3.setupHook: clear icon-theme.cache in preFixup
This commit is contained in:
commit
f80e55fc2e
|
@ -32,7 +32,11 @@
|
||||||
<title>Icons</title>
|
<title>Icons</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
When an application uses icons, an icon theme should be available in <envar>XDG_DATA_DIRS</envar>. The package for the default, icon-less <link xlink:href="https://www.freedesktop.org/wiki/Software/icon-theme/">hicolor-icon-theme</link> contains <link linkend="ssec-gnome-hooks-hicolor-icon-theme">a setup hook</link> that will pick up icon themes from <literal>buildInputs</literal> and pass it to our wrapper. Unfortunately, relying on that would mean every user has to download the theme included in the package expression no matter their preference. For that reason, we leave the installation of icon theme on the user. If you use one of the desktop environments, you probably already have an icon theme installed.
|
When an application uses icons, an icon theme should be available in <envar>XDG_DATA_DIRS</envar> during runtime. The package for the default, icon-less <link xlink:href="https://www.freedesktop.org/wiki/Software/icon-theme/">hicolor-icon-theme</link> (should be propagated by every icon theme) contains <link linkend="ssec-gnome-hooks-hicolor-icon-theme">a setup hook</link> that will pick up icon themes from <literal>buildInputs</literal> and pass it to our wrapper. Unfortunately, relying on that would mean every user has to download the theme included in the package expression no matter their preference. For that reason, we leave the installation of icon theme on the user. If you use one of the desktop environments, you probably already have an icon theme installed.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
To avoid costly file system access when locating icons, GTK, <link xlink:href="https://woboq.com/blog/qicon-reads-gtk-icon-cache-in-qt57.html">as well as Qt</link>, can rely on <filename>icon-theme.cache</filename> files from the themes’ top-level directories. These files are generated using <command>gtk-update-icon-cache</command>, which is expected to be run whenever an icon is added or removed to an icon theme (typically an application icon into <literal>hicolor</literal> theme) and some programs do indeed run this after icon installation. However, since packages are installed into their own prefix by Nix, this would lead to conflicts. For that reason, <package>gtk3</package> provides a <link xlink:href="#ssec-gnome-hooks-gtk-drop-icon-theme-cache">setup hook</link> that will clean the file from installation. Since most applications only ship their own icon that will be loaded on start-up, it should not affect them too much. On the other hand, icon themes are much larger and more widely used so we need to cache them. Because we recommend installing icon themes globally, we will generate the cache files from all packages in a profile using a NixOS module. You can enable the cache generation using <option>gtk.iconCache.enable</option> option if your desktop environment does not already do that.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -91,6 +95,11 @@ preFixup = ''
|
||||||
<package>glib</package> setup hook will populate <envar>GSETTINGS_SCHEMAS_PATH</envar> and then <package>wrapGAppsHook</package> will prepend it to <envar>XDG_DATA_DIRS</envar>.
|
<package>glib</package> setup hook will populate <envar>GSETTINGS_SCHEMAS_PATH</envar> and then <package>wrapGAppsHook</package> will prepend it to <envar>XDG_DATA_DIRS</envar>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem xml:id="ssec-gnome-hooks-gtk-drop-icon-theme-cache">
|
||||||
|
<para>
|
||||||
|
One of <package>gtk3</package>’s setup hooks will remove <filename>icon-theme.cache</filename> files from package’s icon theme directories to avoid conflicts. Icon theme packages should prevent this with <code>dontDropIconThemeCache = true;</code>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem xml:id="ssec-gnome-hooks-dconf">
|
<listitem xml:id="ssec-gnome-hooks-dconf">
|
||||||
<para>
|
<para>
|
||||||
<package>gnome3.dconf.lib</package> is a dependency of <package>wrapGAppsHook</package>, which then also adds it to the <envar>GIO_EXTRA_MODULES</envar> variable.
|
<package>gnome3.dconf.lib</package> is a dependency of <package>wrapGAppsHook</package>, which then also adds it to the <envar>GIO_EXTRA_MODULES</envar> variable.
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
, appstream-glib
|
, appstream-glib
|
||||||
, desktop-file-utils
|
, desktop-file-utils
|
||||||
, totem-pl-parser
|
, totem-pl-parser
|
||||||
, hicolor-icon-theme
|
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, lastFMSupport ? true
|
, lastFMSupport ? true
|
||||||
|
@ -51,7 +50,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
gst-plugins-ugly
|
gst-plugins-ugly
|
||||||
gstreamer
|
gstreamer
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
libsoup
|
libsoup
|
||||||
totem-pl-parser
|
totem-pl-parser
|
||||||
] ++ lib.optional lastFMSupport libsecret;
|
] ++ lib.optional lastFMSupport libsecret;
|
||||||
|
|
|
@ -32,7 +32,6 @@
|
||||||
, rubberband
|
, rubberband
|
||||||
, mda_lv2
|
, mda_lv2
|
||||||
, lsp-plugins
|
, lsp-plugins
|
||||||
, hicolor-icon-theme
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -86,7 +85,6 @@ in stdenv.mkDerivation rec {
|
||||||
dbus
|
dbus
|
||||||
fftwFloat
|
fftwFloat
|
||||||
zita-convolver
|
zita-convolver
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
, gtk-doc
|
, gtk-doc
|
||||||
, gtk3
|
, gtk3
|
||||||
, gtksourceview4
|
, gtksourceview4
|
||||||
, hicolor-icon-theme
|
|
||||||
, json-glib
|
, json-glib
|
||||||
, jsonrpc-glib
|
, jsonrpc-glib
|
||||||
, libdazzle
|
, libdazzle
|
||||||
|
@ -56,7 +55,6 @@ stdenv.mkDerivation rec {
|
||||||
docbook_xml_dtd_43
|
docbook_xml_dtd_43
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
gtk-doc
|
gtk-doc
|
||||||
hicolor-icon-theme
|
|
||||||
(meson.override ({ inherit stdenv; }))
|
(meson.override ({ inherit stdenv; }))
|
||||||
ninja
|
ninja
|
||||||
pkgconfig
|
pkgconfig
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, makeDesktopItem, fetchurl, unzip
|
{ stdenv, makeDesktopItem, fetchurl, unzip
|
||||||
, gdk-pixbuf, glib, gtk3, atk, at-spi2-atk, pango, cairo, freetype, fontconfig, dbus, nss, nspr, alsaLib, cups, expat, udev, gnome3
|
, gdk-pixbuf, glib, gtk3, atk, at-spi2-atk, pango, cairo, freetype, fontconfig, dbus, nss, nspr, alsaLib, cups, expat, udev, gnome3
|
||||||
, xorg, mozjpeg, makeWrapper, wrapGAppsHook, hicolor-icon-theme, libuuid, at-spi2-core
|
, xorg, mozjpeg, makeWrapper, wrapGAppsHook, libuuid, at-spi2-core
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [makeWrapper wrapGAppsHook];
|
nativeBuildInputs = [makeWrapper wrapGAppsHook];
|
||||||
buildInputs = [ unzip gtk3 gnome3.adwaita-icon-theme hicolor-icon-theme ];
|
buildInputs = [ unzip gtk3 gnome3.adwaita-icon-theme ];
|
||||||
|
|
||||||
# src is producing multiple folder on unzip so we must
|
# src is producing multiple folder on unzip so we must
|
||||||
# override unpackCmd to extract it into newly created folder
|
# override unpackCmd to extract it into newly created folder
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchgit, autoconf, automake, libtool, gtk2, pkgconfig, perlPackages,
|
{ stdenv, fetchgit, autoconf, automake, libtool, gtk2, pkgconfig, perlPackages,
|
||||||
libxml2, gettext, python, libxml2Python, docbook5, docbook_xsl,
|
libxml2, gettext, python, libxml2Python, docbook5, docbook_xsl,
|
||||||
libxslt, intltool, libart_lgpl, withGNOME ? false, libgnomeui, hicolor-icon-theme,
|
libxslt, intltool, libart_lgpl, withGNOME ? false, libgnomeui,
|
||||||
gtk-mac-integration-gtk2 }:
|
gtk-mac-integration-gtk2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ gtk2 libxml2 gettext python libxml2Python docbook5
|
[ gtk2 libxml2 gettext python libxml2Python docbook5
|
||||||
libxslt docbook_xsl libart_lgpl hicolor-icon-theme ]
|
libxslt docbook_xsl libart_lgpl ]
|
||||||
++ stdenv.lib.optional withGNOME libgnomeui
|
++ stdenv.lib.optional withGNOME libgnomeui
|
||||||
++ stdenv.lib.optional stdenv.isDarwin gtk-mac-integration-gtk2;
|
++ stdenv.lib.optional stdenv.isDarwin gtk-mac-integration-gtk2;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, barcode, gnome3, autoreconfHook
|
{ stdenv, fetchurl, barcode, gnome3, autoreconfHook
|
||||||
, gtk3, gtk-doc, libxml2, librsvg , libtool, libe-book, gsettings-desktop-schemas
|
, gtk3, gtk-doc, libxml2, librsvg , libtool, libe-book, gsettings-desktop-schemas
|
||||||
, intltool, itstool, makeWrapper, pkgconfig, hicolor-icon-theme
|
, intltool, itstool, makeWrapper, pkgconfig
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -17,7 +17,6 @@ stdenv.mkDerivation rec {
|
||||||
barcode gtk3 gtk-doc gnome3.yelp-tools
|
barcode gtk3 gtk-doc gnome3.yelp-tools
|
||||||
gnome3.gnome-common gsettings-desktop-schemas
|
gnome3.gnome-common gsettings-desktop-schemas
|
||||||
itstool libxml2 librsvg libe-book libtool
|
itstool libxml2 librsvg libe-book libtool
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
, pantheon
|
, pantheon
|
||||||
, desktop-file-utils
|
, desktop-file-utils
|
||||||
, xorg
|
, xorg
|
||||||
, hicolor-icon-theme
|
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -28,7 +27,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
pantheon.vala
|
pantheon.vala
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
, libpng, zlib, popt, boehmgc, libxml2, libxslt, glib, gtkmm2
|
, libpng, zlib, popt, boehmgc, libxml2, libxslt, glib, gtkmm2
|
||||||
, glibmm, libsigcxx, lcms, boost, gettext, makeWrapper
|
, glibmm, libsigcxx, lcms, boost, gettext, makeWrapper
|
||||||
, gsl, python2, poppler, imagemagick, libwpg, librevenge
|
, gsl, python2, poppler, imagemagick, libwpg, librevenge
|
||||||
, libvisio, libcdr, libexif, potrace, cmake, hicolor-icon-theme
|
, libvisio, libcdr, libexif, potrace, cmake
|
||||||
, librsvg, wrapGAppsHook
|
, librsvg, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||||
libXft libpng zlib popt boehmgc
|
libXft libpng zlib popt boehmgc
|
||||||
libxml2 libxslt glib gtkmm2 glibmm libsigcxx lcms boost gettext
|
libxml2 libxslt glib gtkmm2 glibmm libsigcxx lcms boost gettext
|
||||||
gsl poppler imagemagick libwpg librevenge
|
gsl poppler imagemagick libwpg librevenge
|
||||||
libvisio libcdr libexif potrace hicolor-icon-theme
|
libvisio libcdr libexif potrace
|
||||||
|
|
||||||
librsvg # for loading icons
|
librsvg # for loading icons
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3, intltool, json_c, lcms2, libpng, librsvg, gobject-introspection, hicolor-icon-theme
|
{ stdenv, fetchFromGitHub, gtk3, intltool, json_c, lcms2, libpng, librsvg, gobject-introspection
|
||||||
, gdk-pixbuf, pkgconfig, python2Packages, scons, swig, wrapGAppsHook }:
|
, gdk-pixbuf, pkgconfig, python2Packages, scons, swig, wrapGAppsHook }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -21,7 +21,7 @@ in stdenv.mkDerivation {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 gdk-pixbuf json_c lcms2 libpng librsvg pycairo pygobject3 python hicolor-icon-theme
|
gtk3 gdk-pixbuf json_c lcms2 libpng librsvg pycairo pygobject3 python
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy ];
|
propagatedBuildInputs = [ numpy ];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ lib, python3Packages, fetchFromGitHub, imagemagick, librsvg, gtk3, jhead
|
{ lib, python3Packages, fetchFromGitHub, imagemagick, librsvg, gtk3, jhead
|
||||||
, hicolor-icon-theme, gnome3
|
, gnome3
|
||||||
|
|
||||||
# Test requirements
|
# Test requirements
|
||||||
, dbus, xvfb_run, xdotool
|
, dbus, xvfb_run, xdotool
|
||||||
|
@ -38,7 +38,7 @@ python3Packages.buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ python3Packages.nose dbus.daemon xvfb_run xdotool ];
|
checkInputs = [ python3Packages.nose dbus.daemon xvfb_run xdotool ];
|
||||||
buildInputs = [ hicolor-icon-theme gnome3.adwaita-icon-theme librsvg ];
|
buildInputs = [ gnome3.adwaita-icon-theme librsvg ];
|
||||||
propagatedBuildInputs = with python3Packages; [ pillow pygobject3 gtk3 ];
|
propagatedBuildInputs = with python3Packages; [ pillow pygobject3 gtk3 ];
|
||||||
|
|
||||||
makeWrapperArgs = [
|
makeWrapperArgs = [
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
, glib
|
, glib
|
||||||
, gsettings-desktop-schemas
|
, gsettings-desktop-schemas
|
||||||
, gtk3
|
, gtk3
|
||||||
, hicolor-icon-theme
|
|
||||||
, libsndfile
|
, libsndfile
|
||||||
, libxml2
|
, libxml2
|
||||||
, libzip
|
, libzip
|
||||||
|
@ -38,7 +37,6 @@ stdenv.mkDerivation rec {
|
||||||
[ glib
|
[ glib
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
libsndfile
|
libsndfile
|
||||||
libxml2
|
libxml2
|
||||||
libzip
|
libzip
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
, gettext
|
, gettext
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
, hicolor-icon-theme
|
|
||||||
, libgee
|
, libgee
|
||||||
, wrapGAppsHook }:
|
, wrapGAppsHook }:
|
||||||
|
|
||||||
|
@ -36,7 +35,6 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib
|
glib
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
pantheon.granite
|
pantheon.granite
|
||||||
libgee
|
libgee
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool, hicolor-icon-theme }:
|
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "clipit";
|
pname = "clipit";
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ intltool gtk2 xdotool hicolor-icon-theme ];
|
buildInputs = [ intltool gtk2 xdotool ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Lightweight GTK Clipboard Manager";
|
description = "Lightweight GTK Clipboard Manager";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, gtk3, intltool, pkgconfig, texinfo, hicolor-icon-theme }:
|
{ stdenv, fetchurl, gtk3, intltool, pkgconfig, texinfo }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gxmessage";
|
pname = "gxmessage";
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ intltool gtk3 texinfo hicolor-icon-theme ];
|
buildInputs = [ intltool gtk3 texinfo ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A GTK enabled dropin replacement for xmessage";
|
description = "A GTK enabled dropin replacement for xmessage";
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
, gtk3
|
, gtk3
|
||||||
, libwnck3
|
, libwnck3
|
||||||
, keybinder3
|
, keybinder3
|
||||||
, hicolor-icon-theme
|
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, wafHook
|
, wafHook
|
||||||
}:
|
}:
|
||||||
|
@ -27,7 +26,7 @@ buildPythonApplication rec {
|
||||||
# For setup hook
|
# For setup hook
|
||||||
gobject-introspection wafHook
|
gobject-introspection wafHook
|
||||||
];
|
];
|
||||||
buildInputs = [ hicolor-icon-theme docutils libwnck3 keybinder3 ];
|
buildInputs = [ docutils libwnck3 keybinder3 ];
|
||||||
propagatedBuildInputs = [ pygobject3 gtk3 pyxdg dbus-python pycairo ];
|
propagatedBuildInputs = [ pygobject3 gtk3 pyxdg dbus-python pycairo ];
|
||||||
|
|
||||||
# without strictDeps kupfer fails to build: Could not find the python module 'gi.repository.Gtk'
|
# without strictDeps kupfer fails to build: Could not find the python module 'gi.repository.Gtk'
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
, doxygen
|
, doxygen
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
, hicolor-icon-theme
|
|
||||||
, libmediainfo
|
, libmediainfo
|
||||||
, libraw
|
, libraw
|
||||||
, libsodium
|
, libsodium
|
||||||
|
@ -51,7 +50,6 @@ mkDerivation rec {
|
||||||
cryptopp
|
cryptopp
|
||||||
curl
|
curl
|
||||||
ffmpeg
|
ffmpeg
|
||||||
hicolor-icon-theme
|
|
||||||
libmediainfo
|
libmediainfo
|
||||||
libraw
|
libraw
|
||||||
libsodium
|
libsodium
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, pkgconfig, fetchurl, buildPythonApplication
|
{ stdenv, pkgconfig, fetchurl, buildPythonApplication
|
||||||
, autoreconfHook, wrapGAppsHook, gobject-introspection
|
, autoreconfHook, wrapGAppsHook, gobject-introspection
|
||||||
, intltool, yelp-tools, itstool, libxmlxx3
|
, intltool, yelp-tools, itstool, libxmlxx3
|
||||||
, python, pygobject3, gtk3, gnome3, substituteAll, hicolor-icon-theme
|
, python, pygobject3, gtk3, gnome3, substituteAll
|
||||||
, at-spi2-atk, at-spi2-core, pyatspi, dbus, dbus-python, pyxdg
|
, at-spi2-atk, at-spi2-core, pyatspi, dbus, dbus-python, pyxdg
|
||||||
, xkbcomp, procps, lsof, coreutils, gsettings-desktop-schemas
|
, xkbcomp, procps, lsof, coreutils, gsettings-desktop-schemas
|
||||||
, speechd, brltty, liblouis, setproctitle, gst_all_1, gst-python
|
, speechd, brltty, liblouis, setproctitle, gst_all_1, gst-python
|
||||||
|
@ -31,7 +31,6 @@ buildPythonApplication rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook wrapGAppsHook pkgconfig libxmlxx3
|
autoreconfHook wrapGAppsHook pkgconfig libxmlxx3
|
||||||
intltool yelp-tools itstool gobject-introspection
|
intltool yelp-tools itstool gobject-introspection
|
||||||
hicolor-icon-theme # setup-hook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchFromGitHub, autoconf, automake, gettext, intltool
|
{ stdenv, fetchFromGitHub, autoconf, automake, gettext, intltool
|
||||||
, libtool, pkgconfig, wrapGAppsHook, wrapPython, gobject-introspection
|
, libtool, pkgconfig, wrapGAppsHook, wrapPython, gobject-introspection
|
||||||
, gtk3, python, pygobject3, hicolor-icon-theme, pyxdg
|
, gtk3, python, pygobject3, pyxdg
|
||||||
|
|
||||||
, withQuartz ? stdenv.isDarwin, ApplicationServices
|
, withQuartz ? stdenv.isDarwin, ApplicationServices
|
||||||
, withRandr ? stdenv.isLinux, libxcb
|
, withRandr ? stdenv.isLinux, libxcb
|
||||||
|
@ -50,7 +50,6 @@ stdenv.mkDerivation rec {
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
gtk3
|
gtk3
|
||||||
python
|
python
|
||||||
hicolor-icon-theme
|
|
||||||
] ++ stdenv.lib.optional withRandr libxcb
|
] ++ stdenv.lib.optional withRandr libxcb
|
||||||
++ stdenv.lib.optional withGeoclue geoclue
|
++ stdenv.lib.optional withGeoclue geoclue
|
||||||
++ stdenv.lib.optional withDrm libdrm
|
++ stdenv.lib.optional withDrm libdrm
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ at-spi2-core, cmake, dbus, dbus-glib, docbook_xsl, epoxy, fetchpatch, fetchFromGitHub
|
{ at-spi2-core, cmake, dbus, dbus-glib, docbook_xsl, epoxy, fetchpatch, fetchFromGitHub
|
||||||
, glib, gtk3, harfbuzz, hicolor-icon-theme, libXdmcp, libXtst, libpthreadstubs
|
, glib, gtk3, harfbuzz, libXdmcp, libXtst, libpthreadstubs
|
||||||
, libselinux, libsepol, libtasn1, libxkbcommon, libxslt, p11-kit, pcre
|
, libselinux, libsepol, libtasn1, libxkbcommon, libxslt, p11-kit, pcre
|
||||||
, pkgconfig, stdenv, utillinuxMinimal, vte, wrapGAppsHook, xmlto
|
, pkgconfig, stdenv, utillinuxMinimal, vte, wrapGAppsHook, xmlto
|
||||||
}:
|
}:
|
||||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ gtk3 dbus dbus-glib vte pcre harfbuzz libpthreadstubs libXdmcp
|
[ gtk3 dbus dbus-glib vte pcre harfbuzz libpthreadstubs libXdmcp
|
||||||
utillinuxMinimal glib hicolor-icon-theme docbook_xsl xmlto libselinux
|
utillinuxMinimal glib docbook_xsl xmlto libselinux
|
||||||
libsepol libxkbcommon epoxy at-spi2-core libXtst libtasn1 p11-kit
|
libsepol libxkbcommon epoxy at-spi2-core libXtst libtasn1 p11-kit
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, gettext, pkgconfig, glib, libnotify, gtk3, libgee
|
{ stdenv, fetchurl, gettext, pkgconfig, glib, libnotify, gtk3, libgee
|
||||||
, keybinder3, json-glib, zeitgeist, vala, hicolor-icon-theme, gobject-introspection
|
, keybinder3, json-glib, zeitgeist, vala, gobject-introspection
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -20,7 +20,6 @@ in stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib libnotify gtk3 libgee keybinder3 json-glib zeitgeist
|
glib libnotify gtk3 libgee keybinder3 json-glib zeitgeist
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
, glib
|
, glib
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, libunwind
|
, libunwind
|
||||||
, hicolor-icon-theme
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -38,7 +37,6 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
dmd
|
dmd
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
pkgconfig
|
pkgconfig
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchFromGitLab, pkgconfig, cmake, gettext, cairo, pango, pcre
|
{ stdenv, fetchFromGitLab, pkgconfig, cmake, gettext, cairo, pango, pcre
|
||||||
, glib, imlib2, gtk2, libXinerama, libXrender, libXcomposite, libXdamage
|
, glib, imlib2, gtk2, libXinerama, libXrender, libXcomposite, libXdamage
|
||||||
, libX11, libXrandr, librsvg, libpthreadstubs, libXdmcp
|
, libX11, libXrandr, librsvg, libpthreadstubs, libXdmcp
|
||||||
, libstartup_notification, hicolor-icon-theme, wrapGAppsHook
|
, libstartup_notification, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ cairo pango pcre glib imlib2 gtk2 libXinerama libXrender
|
buildInputs = [ cairo pango pcre glib imlib2 gtk2 libXinerama libXrender
|
||||||
libXcomposite libXdamage libX11 libXrandr librsvg libpthreadstubs
|
libXcomposite libXdamage libX11 libXrandr librsvg libpthreadstubs
|
||||||
libXdmcp libstartup_notification hicolor-icon-theme ];
|
libXdmcp libstartup_notification ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
for f in ./src/launcher/apps-common.c \
|
for f in ./src/launcher/apps-common.c \
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchFromGitHub
|
{ stdenv, fetchFromGitHub
|
||||||
, meson, ninja, pkgconfig, python3, libgee, gsettings-desktop-schemas
|
, meson, ninja, pkgconfig, python3, libgee, gsettings-desktop-schemas
|
||||||
, gnome3, pantheon, gobject-introspection, wrapGAppsHook
|
, gnome3, pantheon, gobject-introspection, wrapGAppsHook
|
||||||
, gtk3, json-glib, glib, glib-networking, hicolor-icon-theme
|
, gtk3, json-glib, glib, glib-networking
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -27,7 +27,7 @@ in stdenv.mkDerivation {
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 pantheon.granite json-glib glib glib-networking hicolor-icon-theme
|
gtk3 pantheon.granite json-glib glib glib-networking
|
||||||
libgee gnome3.libsoup gsettings-desktop-schemas
|
libgee gnome3.libsoup gsettings-desktop-schemas
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchFromGitHub, asciidoc-full, gettext
|
{ stdenv, fetchFromGitHub, asciidoc-full, gettext
|
||||||
, gobject-introspection, gtk3, hicolor-icon-theme, libappindicator-gtk3, libnotify, librsvg
|
, gobject-introspection, gtk3, libappindicator-gtk3, libnotify, librsvg
|
||||||
, udisks2, wrapGAppsHook
|
, udisks2, wrapGAppsHook
|
||||||
, python3Packages
|
, python3Packages
|
||||||
}:
|
}:
|
||||||
|
@ -23,7 +23,6 @@ python3Packages.buildPythonApplication rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
hicolor-icon-theme
|
|
||||||
librsvg # required for loading svg icons (udiskie uses svg icons)
|
librsvg # required for loading svg icons (udiskie uses svg icons)
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
libnotify
|
libnotify
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
, libappindicator
|
, libappindicator
|
||||||
, intltool
|
, intltool
|
||||||
, wmctrl
|
, wmctrl
|
||||||
, hicolor-icon-theme
|
|
||||||
, xvfb_run
|
, xvfb_run
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -36,7 +35,6 @@ python27Packages.buildPythonApplication rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gnome3.adwaita-icon-theme
|
gnome3.adwaita-icon-theme
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
hicolor-icon-theme
|
|
||||||
keybinder3
|
keybinder3
|
||||||
libappindicator
|
libappindicator
|
||||||
libnotify
|
libnotify
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ fetchurl, stdenv, makeWrapper, pkgconfig, intltool, gettext, gtk2, expat, curl
|
{ fetchurl, stdenv, makeWrapper, pkgconfig, intltool, gettext, gtk2, expat, curl
|
||||||
, gpsd, bc, file, gnome-doc-utils, libexif, libxml2, libxslt, scrollkeeper
|
, gpsd, bc, file, gnome-doc-utils, libexif, libxml2, libxslt, scrollkeeper
|
||||||
, docbook_xml_dtd_412, gexiv2, sqlite, gpsbabel, expect, hicolor-icon-theme
|
, docbook_xml_dtd_412, gexiv2, sqlite, gpsbabel, expect
|
||||||
, geoclue2, liboauth, nettle }:
|
, geoclue2, liboauth, nettle }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ makeWrapper intltool gettext gtk2 expat curl gpsd bc file gnome-doc-utils
|
buildInputs = [ makeWrapper intltool gettext gtk2 expat curl gpsd bc file gnome-doc-utils
|
||||||
libexif libxml2 libxslt scrollkeeper docbook_xml_dtd_412 gexiv2 sqlite hicolor-icon-theme
|
libexif libxml2 libxslt scrollkeeper docbook_xml_dtd_412 gexiv2 sqlite
|
||||||
geoclue2 liboauth nettle
|
geoclue2 liboauth nettle
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, autoreconfHook, pkgconfig, wrapGAppsHook
|
, autoreconfHook, pkgconfig, wrapGAppsHook
|
||||||
, glib, intltool, gtk3, gtksourceview, hicolor-icon-theme }:
|
, glib, intltool, gtk3, gtksourceview }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xpad";
|
pname = "xpad";
|
||||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ];
|
||||||
|
|
||||||
buildInputs = [ glib intltool gtk3 gtksourceview hicolor-icon-theme ];
|
buildInputs = [ glib intltool gtk3 gtksourceview ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A sticky note application for jotting down things to remember";
|
description = "A sticky note application for jotting down things to remember";
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
, gettext
|
, gettext
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
, hicolor-icon-theme
|
|
||||||
, libgee
|
, libgee
|
||||||
, libdazzle
|
, libdazzle
|
||||||
, meson
|
, meson
|
||||||
|
@ -43,7 +42,6 @@ stdenv.mkDerivation rec {
|
||||||
glib
|
glib
|
||||||
glib-networking
|
glib-networking
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
libdazzle
|
libdazzle
|
||||||
libgee
|
libgee
|
||||||
pantheon.granite
|
pantheon.granite
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala, gettext, python3
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala, gettext, python3
|
||||||
, appstream-glib, desktop-file-utils, wrapGAppsHook, gnome-online-accounts
|
, appstream-glib, desktop-file-utils, wrapGAppsHook, gnome-online-accounts
|
||||||
, gtk3, libgee, libpeas, librest, webkitgtk, gsettings-desktop-schemas, hicolor-icon-theme
|
, gtk3, libgee, libpeas, librest, webkitgtk, gsettings-desktop-schemas
|
||||||
, curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite, gumbo, libxml2
|
, curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite, gumbo, libxml2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
|
||||||
curl glib json-glib libnotify libsecret sqlite gumbo gtk3
|
curl glib json-glib libnotify libsecret sqlite gumbo gtk3
|
||||||
libgee libpeas gnome3.libsoup librest webkitgtk gsettings-desktop-schemas
|
libgee libpeas gnome3.libsoup librest webkitgtk gsettings-desktop-schemas
|
||||||
gnome-online-accounts
|
gnome-online-accounts
|
||||||
hicolor-icon-theme # for setup hook
|
|
||||||
] ++ (with gst_all_1; [
|
] ++ (with gst_all_1; [
|
||||||
gstreamer gst-plugins-base gst-plugins-good
|
gstreamer gst-plugins-base gst-plugins-good
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, pkgconfig
|
, pkgconfig
|
||||||
, gtksourceview
|
, gtksourceview
|
||||||
, hicolor-icon-theme
|
|
||||||
, glib
|
, glib
|
||||||
, libhandy
|
, libhandy
|
||||||
, gtk3
|
, gtk3
|
||||||
|
@ -61,7 +60,6 @@ rustPlatform.buildRustPackage rec {
|
||||||
gst_all_1.gstreamer
|
gst_all_1.gstreamer
|
||||||
gtk3
|
gtk3
|
||||||
gtksourceview
|
gtksourceview
|
||||||
hicolor-icon-theme
|
|
||||||
libhandy
|
libhandy
|
||||||
openssl
|
openssl
|
||||||
sqlite
|
sqlite
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, gtk2, lua, perl, python3
|
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, gtk2, lua, perl, python3
|
||||||
, pciutils, dbus-glib, libcanberra-gtk2, libproxy
|
, pciutils, dbus-glib, libcanberra-gtk2, libproxy
|
||||||
, libsexy, enchant2, libnotify, openssl, isocodes
|
, libsexy, enchant2, libnotify, openssl, isocodes
|
||||||
, desktop-file-utils, hicolor-icon-theme
|
, desktop-file-utils
|
||||||
, meson, ninja
|
, meson, ninja
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk2 lua perl python3 pciutils dbus-glib libcanberra-gtk2 libproxy
|
gtk2 lua perl python3 pciutils dbus-glib libcanberra-gtk2 libproxy
|
||||||
libsexy libnotify openssl desktop-file-utils hicolor-icon-theme
|
libsexy libnotify openssl desktop-file-utils
|
||||||
isocodes
|
isocodes
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk3, gmime, gnutls,
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk3, gmime, gnutls,
|
||||||
webkitgtk, libesmtp, openssl, libnotify, gtkspell3, gpgme,
|
webkitgtk, libesmtp, openssl, libnotify, gtkspell3, gpgme,
|
||||||
libcanberra-gtk3, libsecret, gtksourceview, gobject-introspection,
|
libcanberra-gtk3, libsecret, gtksourceview, gobject-introspection,
|
||||||
hicolor-icon-theme, wrapGAppsHook
|
wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -17,7 +17,6 @@ stdenv.mkDerivation rec {
|
||||||
pkgconfig
|
pkgconfig
|
||||||
intltool
|
intltool
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
hicolor-icon-theme
|
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ config, fetchurl, stdenv, wrapGAppsHook, autoreconfHook
|
{ config, fetchurl, stdenv, wrapGAppsHook, autoreconfHook
|
||||||
, curl, dbus, dbus-glib, enchant, gtk2, gnutls, gnupg, gpgme, hicolor-icon-theme
|
, curl, dbus, dbus-glib, enchant, gtk2, gnutls, gnupg, gpgme
|
||||||
, libarchive, libcanberra-gtk2, libetpan, libnotify, libsoup, libxml2, networkmanager
|
, libarchive, libcanberra-gtk2, libetpan, libnotify, libsoup, libxml2, networkmanager
|
||||||
, openldap, perl, pkgconfig, poppler, python, shared-mime-info, webkitgtk24x-gtk2
|
, openldap, perl, pkgconfig, poppler, python, shared-mime-info, webkitgtk24x-gtk2
|
||||||
, glib-networking, gsettings-desktop-schemas, libSM, libytnef, libical
|
, glib-networking, gsettings-desktop-schemas, libSM, libytnef, libical
|
||||||
|
@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
|
||||||
propagatedBuildInputs = with python.pkgs; [ python ] ++ optionals enablePluginPython [ pygtk pygobject2 ];
|
propagatedBuildInputs = with python.pkgs; [ python ] ++ optionals enablePluginPython [ pygtk pygobject2 ];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ curl dbus dbus-glib gtk2 gnutls gsettings-desktop-schemas hicolor-icon-theme
|
[ curl dbus dbus-glib gtk2 gnutls gsettings-desktop-schemas
|
||||||
libetpan perl glib-networking libSM libytnef
|
libetpan perl glib-networking libSM libytnef
|
||||||
]
|
]
|
||||||
++ optional enableSpellcheck enchant
|
++ optional enableSpellcheck enchant
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook
|
{ stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook
|
||||||
, glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json-glib, gst_all_1
|
, glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json-glib, gst_all_1
|
||||||
, libnotify, gtk3, gsettings-desktop-schemas, libpeas, dconf, librsvg
|
, libnotify, gtk3, gsettings-desktop-schemas, libpeas, dconf, librsvg
|
||||||
, gobject-introspection, glib-networking, hicolor-icon-theme
|
, gobject-introspection, glib-networking
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings-desktop-schemas
|
glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings-desktop-schemas
|
||||||
libpeas gsettings-desktop-schemas json-glib dconf gobject-introspection
|
libpeas gsettings-desktop-schemas json-glib dconf gobject-introspection
|
||||||
librsvg glib-networking libnotify hicolor-icon-theme
|
librsvg glib-networking libnotify
|
||||||
] ++ (with gst_all_1; [
|
] ++ (with gst_all_1; [
|
||||||
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
, curl
|
, curl
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
, hicolor-icon-theme
|
|
||||||
, libb64
|
, libb64
|
||||||
, libevent
|
, libevent
|
||||||
, libgee
|
, libgee
|
||||||
|
@ -14,7 +13,8 @@
|
||||||
, libunity
|
, libunity
|
||||||
, miniupnpc
|
, miniupnpc
|
||||||
, openssl
|
, openssl
|
||||||
, wrapGAppsHook }:
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "torrential";
|
pname = "torrential";
|
||||||
|
@ -39,7 +39,6 @@ stdenv.mkDerivation rec {
|
||||||
curl
|
curl
|
||||||
glib
|
glib
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
libb64
|
libb64
|
||||||
libevent
|
libevent
|
||||||
libgee
|
libgee
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{ stdenv, autoconf, automake, libtool, wrapGAppsHook, fetchFromGitHub, pkgconfig
|
{ stdenv, autoconf, automake, libtool, wrapGAppsHook, fetchFromGitHub, pkgconfig
|
||||||
, intltool, gtk3, json-glib, curl, glib, autoconf-archive, appstream-glib
|
, intltool, gtk3, json-glib, curl, glib, autoconf-archive, appstream-glib }:
|
||||||
, hicolor-icon-theme }:
|
|
||||||
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -22,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
appstream-glib
|
appstream-glib
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ gtk3 json-glib curl glib hicolor-icon-theme ];
|
buildInputs = [ gtk3 json-glib curl glib ];
|
||||||
|
|
||||||
doCheck = false; # fails with style validation error
|
doCheck = false; # fails with style validation error
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, intltool, file, wrapGAppsHook
|
{ stdenv, fetchurl, pkgconfig, intltool, file, wrapGAppsHook
|
||||||
, openssl, curl, libevent, inotify-tools, systemd, zlib, hicolor-icon-theme
|
, openssl, curl, libevent, inotify-tools, systemd, zlib
|
||||||
, enableGTK3 ? false, gtk3
|
, enableGTK3 ? false, gtk3
|
||||||
, enableSystemd ? stdenv.isLinux
|
, enableSystemd ? stdenv.isLinux
|
||||||
, enableDaemon ? true
|
, enableDaemon ? true
|
||||||
|
@ -22,8 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ intltool file openssl curl libevent zlib ]
|
buildInputs = [ intltool file openssl curl libevent zlib ]
|
||||||
++ optionals enableGTK3 [ gtk3 ]
|
++ optionals enableGTK3 [ gtk3 ]
|
||||||
++ optionals enableSystemd [ systemd ]
|
++ optionals enableSystemd [ systemd ]
|
||||||
++ optionals stdenv.isLinux [ inotify-tools ]
|
++ optionals stdenv.isLinux [ inotify-tools ];
|
||||||
++ optionals enableGTK3 [ hicolor-icon-theme ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace ./configure \
|
substituteInPlace ./configure \
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
, gtksourceview
|
, gtksourceview
|
||||||
, hicolor-icon-theme
|
|
||||||
, json-glib
|
, json-glib
|
||||||
, libsoup
|
, libsoup
|
||||||
, libgee
|
, libgee
|
||||||
|
@ -38,7 +37,6 @@ stdenv.mkDerivation rec {
|
||||||
glib
|
glib
|
||||||
gtk3
|
gtk3
|
||||||
gtksourceview
|
gtksourceview
|
||||||
hicolor-icon-theme
|
|
||||||
json-glib
|
json-glib
|
||||||
libgee
|
libgee
|
||||||
libsoup
|
libsoup
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
, libsecret, libsoup, spice-protocol, spice-gtk, epoxy, at-spi2-core
|
, libsecret, libsoup, spice-protocol, spice-gtk, epoxy, at-spi2-core
|
||||||
, openssl, gsettings-desktop-schemas, json-glib
|
, openssl, gsettings-desktop-schemas, json-glib
|
||||||
# The themes here are soft dependencies; only icons are missing without them.
|
# The themes here are soft dependencies; only icons are missing without them.
|
||||||
, hicolor-icon-theme, gnome3
|
, gnome3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
pcre libdbusmenu-gtk3 libappindicator-gtk3
|
pcre libdbusmenu-gtk3 libappindicator-gtk3
|
||||||
libvncserver libpthreadstubs libXdmcp libxkbcommon
|
libvncserver libpthreadstubs libXdmcp libxkbcommon
|
||||||
libsecret libsoup spice-protocol spice-gtk epoxy at-spi2-core
|
libsecret libsoup spice-protocol spice-gtk epoxy at-spi2-core
|
||||||
openssl hicolor-icon-theme gnome3.adwaita-icon-theme json-glib
|
openssl gnome3.adwaita-icon-theme json-glib
|
||||||
];
|
];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ stdenv, fetchFromGitLab, vala, python3, pkgconfig, meson, ninja, gtk3
|
{ stdenv, fetchFromGitLab, vala, python3, pkgconfig, meson, ninja, gtk3
|
||||||
, json-glib, libsoup, webkitgtk, geocode-glib
|
, json-glib, libsoup, webkitgtk, geocode-glib
|
||||||
, libappindicator, desktop-file-utils, appstream, wrapGAppsHook
|
, libappindicator, desktop-file-utils, appstream, wrapGAppsHook }:
|
||||||
, hicolor-icon-theme }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "meteo";
|
pname = "meteo";
|
||||||
|
@ -28,7 +27,6 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
geocode-glib
|
geocode-glib
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
json-glib
|
json-glib
|
||||||
libappindicator
|
libappindicator
|
||||||
libsoup
|
libsoup
|
||||||
|
|
|
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost icu libxml2 libxslt gettext swig isocodes gtk3 glibcLocales
|
boost icu libxml2 libxslt gettext swig isocodes gtk3 glibcLocales
|
||||||
webkitgtk dconf hicolor-icon-theme libofx aqbanking gwenhywfar libdbi
|
webkitgtk dconf libofx aqbanking gwenhywfar libdbi
|
||||||
libdbiDrivers guile
|
libdbiDrivers guile
|
||||||
perlWrapper perl
|
perlWrapper perl
|
||||||
] ++ (with perlPackages; [ FinanceQuote DateManip ]);
|
] ++ (with perlPackages; [ FinanceQuote DateManip ]);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ fetchurl, stdenv, gtk, pkgconfig, libgsf, libofx, intltool, wrapGAppsHook
|
{ fetchurl, stdenv, gtk, pkgconfig, libgsf, libofx, intltool, wrapGAppsHook
|
||||||
, hicolor-icon-theme, libsoup, gnome3 }:
|
, libsoup, gnome3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "grisbi";
|
pname = "grisbi";
|
||||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
||||||
buildInputs = [ gtk libgsf libofx intltool hicolor-icon-theme libsoup
|
buildInputs = [ gtk libgsf libofx intltool libsoup
|
||||||
gnome3.adwaita-icon-theme ];
|
gnome3.adwaita-icon-theme ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
||||||
, hicolor-icon-theme, libsoup, gnome3 }:
|
, libsoup, gnome3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "homebank-5.2.7";
|
name = "homebank-5.2.7";
|
||||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
||||||
buildInputs = [ gtk libofx intltool hicolor-icon-theme libsoup
|
buildInputs = [ gtk libofx intltool libsoup
|
||||||
gnome3.adwaita-icon-theme ];
|
gnome3.adwaita-icon-theme ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib, python3Packages, gtk3, cairo
|
{ lib, python3Packages, gtk3, cairo
|
||||||
, aspellDicts, buildEnv
|
, aspellDicts, buildEnv
|
||||||
, gnome3, hicolor-icon-theme, librsvg
|
, gnome3, librsvg
|
||||||
, xvfb_run, dbus, libnotify
|
, xvfb_run, dbus, libnotify
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ python3Packages.buildPythonApplication rec {
|
||||||
|
|
||||||
checkInputs = [ xvfb_run dbus.daemon ] ++ (with python3Packages; [ paperwork-backend ]);
|
checkInputs = [ xvfb_run dbus.daemon ] ++ (with python3Packages; [ paperwork-backend ]);
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gnome3.adwaita-icon-theme hicolor-icon-theme libnotify librsvg
|
gnome3.adwaita-icon-theme libnotify librsvg
|
||||||
];
|
];
|
||||||
|
|
||||||
# A few parts of chkdeps need to have a display and a dbus session, so we not
|
# A few parts of chkdeps need to have a display and a dbus session, so we not
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
, hicolor-icon-theme
|
|
||||||
, json-glib
|
, json-glib
|
||||||
, libgee
|
, libgee
|
||||||
, meson
|
, meson
|
||||||
|
@ -37,7 +36,6 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib
|
glib
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
json-glib
|
json-glib
|
||||||
libgee
|
libgee
|
||||||
pantheon.granite
|
pantheon.granite
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine, hicolor-icon-theme }:
|
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine }:
|
||||||
|
|
||||||
let
|
let
|
||||||
description = "A note-taking application that knows programmers and Markdown better";
|
description = "A note-taking application that knows programmers and Markdown better";
|
||||||
|
@ -15,7 +15,7 @@ in mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake ];
|
nativeBuildInputs = [ qmake ];
|
||||||
buildInputs = [ qtbase qtwebengine hicolor-icon-theme ];
|
buildInputs = [ qtbase qtwebengine ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
inherit description;
|
inherit description;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, file, which, intltool, gobject-introspection,
|
{ stdenv, fetchurl, file, which, intltool, gobject-introspection,
|
||||||
findutils, xdg_utils, gnome3, gtk3, pythonPackages, hicolor-icon-theme,
|
findutils, xdg_utils, gnome3, gtk3, pythonPackages,
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -29,7 +29,6 @@ pythonPackages.buildPythonApplication rec {
|
||||||
pythonPackages.pyxdg
|
pythonPackages.pyxdg
|
||||||
pythonPackages.ptyprocess
|
pythonPackages.ptyprocess
|
||||||
pythonPackages.pycairo
|
pythonPackages.pycairo
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
, libXfixes, atk, gtk3, libXrender, pango, gnome3, cairo, freetype, fontconfig
|
, libXfixes, atk, gtk3, libXrender, pango, gnome3, cairo, freetype, fontconfig
|
||||||
, libX11, libXi, libxcb, libXext, libXcursor, glib, libXScrnSaver, libxkbfile, libXtst
|
, libX11, libXi, libxcb, libXext, libXcursor, glib, libXScrnSaver, libxkbfile, libXtst
|
||||||
, nss, nspr, cups, fetchurl, expat, gdk-pixbuf, libXdamage, libXrandr, dbus
|
, nss, nspr, cups, fetchurl, expat, gdk-pixbuf, libXdamage, libXrandr, dbus
|
||||||
, dpkg, makeDesktopItem, openssl, wrapGAppsHook, hicolor-icon-theme, at-spi2-atk, libuuid
|
, dpkg, makeDesktopItem, openssl, wrapGAppsHook, at-spi2-atk, libuuid
|
||||||
, e2fsprogs, krb5
|
, e2fsprogs, krb5
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
|
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
|
||||||
buildInputs = [ dpkg gtk3 gnome3.adwaita-icon-theme hicolor-icon-theme ];
|
buildInputs = [ dpkg gtk3 gnome3.adwaita-icon-theme ];
|
||||||
|
|
||||||
unpackCmd = ''
|
unpackCmd = ''
|
||||||
mkdir out
|
mkdir out
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
, glib
|
, glib
|
||||||
, gnome3
|
, gnome3
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, hicolor-icon-theme
|
|
||||||
, libXtst
|
, libXtst
|
||||||
, which
|
, which
|
||||||
}:
|
}:
|
||||||
|
@ -22,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ wrapGAppsHook ];
|
nativeBuildInputs = [ wrapGAppsHook ];
|
||||||
|
|
||||||
buildInputs = [ jre gnome3.adwaita-icon-theme hicolor-icon-theme gtk3 ];
|
buildInputs = [ jre gnome3.adwaita-icon-theme gtk3 ];
|
||||||
|
|
||||||
preFixup = with stdenv.lib; ''
|
preFixup = with stdenv.lib; ''
|
||||||
gappsWrapperArgs+=( \
|
gappsWrapperArgs+=( \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchFromGitHub, pkgconfig, which, qmake, mkDerivation,
|
{ stdenv, fetchFromGitHub, pkgconfig, which, qmake, mkDerivation,
|
||||||
qtbase, qtmultimedia, frei0r, opencolorio, hicolor-icon-theme, ffmpeg-full,
|
qtbase, qtmultimedia, frei0r, opencolorio, ffmpeg-full,
|
||||||
CoreFoundation }:
|
CoreFoundation }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
|
@ -26,7 +26,6 @@ mkDerivation rec {
|
||||||
qtbase
|
qtbase
|
||||||
qtmultimedia
|
qtmultimedia
|
||||||
qtmultimedia.dev
|
qtmultimedia.dev
|
||||||
hicolor-icon-theme
|
|
||||||
] ++ stdenv.lib.optional stdenv.isDarwin CoreFoundation;
|
] ++ stdenv.lib.optional stdenv.isDarwin CoreFoundation;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
, libXtst
|
, libXtst
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
, gnome3
|
, gnome3
|
||||||
, hicolor-icon-theme
|
|
||||||
}:
|
}:
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "screenkey";
|
pname = "screenkey";
|
||||||
|
@ -40,7 +39,6 @@ buildPythonApplication rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gnome3.adwaita-icon-theme
|
gnome3.adwaita-icon-theme
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${package-name}-${version}";
|
name = "${package-name}-${version}";
|
||||||
|
@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
|
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
|
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
|
@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "16msdrazhbv80cvh5ffvgj13xmkpf87r7mq6xz071fza6nv7g0jn";
|
sha256 = "16msdrazhbv80cvh5ffvgj13xmkpf87r7mq6xz071fza6nv7g0jn";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig gdk-pixbuf librsvg optipng gtk3 hicolor-icon-theme ];
|
nativeBuildInputs = [ pkgconfig gdk-pixbuf librsvg optipng gtk3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace svgtopng/Makefile --replace "-O0" "-O"
|
substituteInPlace svgtopng/Makefile --replace "-O0" "-O"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, meson, ninja, python3, gtk3, pantheon }:
|
{ stdenv, fetchFromGitHub, meson, ninja, python3, gtk3, pantheon, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${package-name}-${version}";
|
name = "${package-name}-${version}";
|
||||||
|
@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja python3 gtk3 pantheon.elementary-icon-theme ];
|
nativeBuildInputs = [ meson ninja python3 gtk3 pantheon.elementary-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs meson/post_install.py
|
patchShebangs meson/post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "faba-mono-icons";
|
pname = "faba-mono-icons";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
|
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
for theme in $out/share/icons/*; do
|
for theme in $out/share/icons/*; do
|
||||||
gtk-update-icon-cache $theme
|
gtk-update-icon-cache $theme
|
||||||
|
|
|
@ -1,21 +1,13 @@
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
# Populate XDG_ICON_DIRS
|
# Populate XDG_ICON_DIRS
|
||||||
hicolorIconThemeHook() {
|
hicolorIconThemeHook() {
|
||||||
|
|
||||||
# where to find icon themes
|
# where to find icon themes
|
||||||
if [ -d "$1/share/icons" ]; then
|
if [ -d "$1/share/icons" ]; then
|
||||||
addToSearchPath XDG_ICON_DIRS $1/share
|
addToSearchPath XDG_ICON_DIRS "$1/share"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# I think this is meant to be a runtime dep
|
# I think this is meant to be a runtime dep
|
||||||
addEnvHooks "$hostOffset" hicolorIconThemeHook
|
addEnvHooks "${hostOffset:?}" hicolorIconThemeHook
|
||||||
|
|
||||||
# Remove icon cache
|
|
||||||
hicolorPreFixupPhase() {
|
|
||||||
rm -f $out/share/icons/hicolor/icon-theme.cache
|
|
||||||
rm -f $out/share/icons/HighContrast/icon-theme.cache
|
|
||||||
}
|
|
||||||
|
|
||||||
preFixupPhases="$preFixupPhases hicolorPreFixupPhase"
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3 }:
|
{ stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "iconpack-obsidian";
|
pname = "iconpack-obsidian";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 ];
|
nativeBuildInputs = [ gtk3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
mv Obsidian* $out/share/icons
|
mv Obsidian* $out/share/icons
|
||||||
|
|
|
@ -21,10 +21,12 @@ stdenv.mkDerivation {
|
||||||
kdeFrameworks.kwindowsystem
|
kdeFrameworks.kwindowsystem
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
propagatedBuildInputs = [
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
];
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
for theme in $out/share/icons/*; do
|
for theme in $out/share/icons/*; do
|
||||||
gtk-update-icon-cache $theme
|
gtk-update-icon-cache $theme
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, meson, ninja, gtk3, python3, faba-icon-theme }:
|
{ stdenv, fetchFromGitHub, meson, ninja, gtk3, python3, faba-icon-theme, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "moka-icon-theme";
|
pname = "moka-icon-theme";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja gtk3 python3 faba-icon-theme ];
|
nativeBuildInputs = [ meson ninja gtk3 python3 faba-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs meson/post_install.py
|
patchShebangs meson/post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
|
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "numix-icon-theme-circle";
|
pname = "numix-icon-theme-circle";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -dm 755 $out/share/icons
|
install -dm 755 $out/share/icons
|
||||||
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/share/icons/
|
cp -dr --no-preserve='ownership' Numix-Circle{,-Light} $out/share/icons/
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
|
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "numix-icon-theme-square";
|
pname = "numix-icon-theme-square";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
cp -a Numix-Square{,-Light} $out/share/icons/
|
cp -a Numix-Square{,-Light} $out/share/icons/
|
||||||
|
|
|
@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0clh55kmhc52d33dfm2c6h3lg6ddfh8a088ir9lv1camn9kj55bd";
|
sha256 = "0clh55kmhc52d33dfm2c6h3lg6ddfh8a088ir9lv1camn9kj55bd";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 hicolor-icon-theme ];
|
nativeBuildInputs = [ gtk3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, meson, ninja, gtk3, python3 }:
|
{ stdenv, fetchFromGitHub, meson, ninja, gtk3, python3, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "paper-icon-theme";
|
pname = "paper-icon-theme";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja gtk3 python3 ];
|
nativeBuildInputs = [ meson ninja gtk3 python3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs meson/post_install.py
|
patchShebangs meson/post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3 }:
|
{ stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "papirus-icon-theme";
|
pname = "papirus-icon-theme";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 ];
|
nativeBuildInputs = [ gtk3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/icons
|
mkdir -p $out/share/icons
|
||||||
mv {,e}Papirus* $out/share/icons
|
mv {,e}Papirus* $out/share/icons
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, intltool, pkgconfig, iconnamingutils, imagemagick, librsvg
|
{ stdenv, fetchurl, intltool, pkgconfig, iconnamingutils, imagemagick, librsvg
|
||||||
, gtk/*any version*/
|
, gtk/*any version*/, hicolor-icon-theme
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -15,6 +15,12 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ intltool iconnamingutils imagemagick librsvg ];
|
buildInputs = [ intltool iconnamingutils imagemagick librsvg ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
configureFlags = [ "--enable-png-creation" ];
|
configureFlags = [ "--enable-png-creation" ];
|
||||||
|
|
||||||
postInstall = '''${gtk.out}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" '';
|
postInstall = '''${gtk.out}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" '';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, fetchzip, xorg }:
|
{ stdenv, lib, fetchzip, xorg, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "vanilla-dmz";
|
pname = "vanilla-dmz";
|
||||||
|
@ -8,6 +8,10 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj";
|
sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj";
|
||||||
};
|
};
|
||||||
buildInputs = [ xorg.xcursorgen ];
|
buildInputs = [ xorg.xcursorgen ];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
cd DMZ-White/pngs; ./make.sh; cd -
|
cd DMZ-White/pngs; ./make.sh; cd -
|
||||||
cd DMZ-Black/pngs; ./make.sh; cd -
|
cd DMZ-Black/pngs; ./make.sh; cd -
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3 }:
|
{ stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "zafiro-icons";
|
pname = "zafiro-icons";
|
||||||
|
@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 ];
|
nativeBuildInputs = [ gtk3 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/icons/Zafiro-icons
|
mkdir -p $out/share/icons/Zafiro-icons
|
||||||
cp -a * $out/share/icons/Zafiro-icons
|
cp -a * $out/share/icons/Zafiro-icons
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, dbus, dde-daemon,
|
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, dbus, dde-daemon,
|
||||||
dde-qt-dbus-factory, deepin, deepin-desktop-schemas,
|
dde-qt-dbus-factory, deepin, deepin-desktop-schemas,
|
||||||
deepin-gettext-tools, deepin-icon-theme, deepin-wallpapers, dtkcore,
|
deepin-gettext-tools, deepin-icon-theme, deepin-wallpapers, dtkcore,
|
||||||
dtkwidget, gnugrep, gsettings-qt, hicolor-icon-theme, lightdm_qt,
|
dtkwidget, gnugrep, gsettings-qt, lightdm_qt,
|
||||||
onboard, qtsvg, qttools, qtx11extras, setxkbmap, utillinux, which,
|
onboard, qtsvg, qttools, qtx11extras, setxkbmap, utillinux, which,
|
||||||
xkeyboard_config, xorg, xrandr, wrapGAppsHook }:
|
xkeyboard_config, xorg, xrandr, wrapGAppsHook }:
|
||||||
|
|
||||||
|
@ -36,7 +36,6 @@ mkDerivation rec {
|
||||||
dtkwidget
|
dtkwidget
|
||||||
gnugrep
|
gnugrep
|
||||||
gsettings-qt
|
gsettings-qt
|
||||||
hicolor-icon-theme
|
|
||||||
lightdm_qt
|
lightdm_qt
|
||||||
onboard
|
onboard
|
||||||
qtsvg
|
qtsvg
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3, xcursorgen, papirus-icon-theme, deepin }:
|
{ stdenv, fetchFromGitHub, gtk3, xcursorgen, papirus-icon-theme, deepin, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "deepin-icon-theme";
|
pname = "deepin-icon-theme";
|
||||||
|
@ -15,6 +15,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ papirus-icon-theme ];
|
buildInputs = [ papirus-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs tools/hicolor.links
|
patchShebangs tools/hicolor.links
|
||||||
patchShebangs tools/display_unused_links.sh
|
patchShebangs tools/display_unused_links.sh
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
, ninja
|
, ninja
|
||||||
, python3
|
, python3
|
||||||
, gnome3
|
, gnome3
|
||||||
, hicolor-icon-theme
|
|
||||||
, desktop-file-utils
|
, desktop-file-utils
|
||||||
, appstream-glib
|
, appstream-glib
|
||||||
, gettext
|
, gettext
|
||||||
|
@ -32,7 +31,6 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
gettext
|
gettext
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
itstool
|
itstool
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, gettext, gobject-introspection, wrapGAppsHook, gjs, glib, gtk3, gdk-pixbuf, gst_all_1, gnome3
|
{ stdenv, fetchurl, pkgconfig, gettext, gobject-introspection, wrapGAppsHook, gjs, glib, gtk3, gdk-pixbuf, gst_all_1, gnome3
|
||||||
, meson, ninja, python3, hicolor-icon-theme, desktop-file-utils }:
|
, meson, ninja, python3, desktop-file-utils }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-sound-recorder";
|
pname = "gnome-sound-recorder";
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig gettext meson ninja gobject-introspection
|
pkgconfig gettext meson ninja gobject-introspection
|
||||||
wrapGAppsHook python3 hicolor-icon-theme desktop-file-utils
|
wrapGAppsHook python3 desktop-file-utils
|
||||||
];
|
];
|
||||||
buildInputs = [ gjs glib gtk3 gdk-pixbuf ] ++ (with gst_all_1; [ gstreamer.dev gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]);
|
buildInputs = [ gjs glib gtk3 gdk-pixbuf ] ++ (with gst_all_1; [ gstreamer.dev gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]);
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, meson, ninja, vala, libxslt, pkgconfig, glib, gtk3, gnome3, python3
|
{ stdenv, fetchurl, meson, ninja, vala, libxslt, pkgconfig, glib, gtk3, gnome3, python3
|
||||||
, libxml2, gettext, docbook_xsl, hicolor-icon-theme, wrapGAppsHook, gobject-introspection }:
|
, libxml2, gettext, docbook_xsl, wrapGAppsHook, gobject-introspection }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "dconf-editor";
|
pname = "dconf-editor";
|
||||||
|
@ -15,7 +15,6 @@ in stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja vala libxslt pkgconfig wrapGAppsHook
|
meson ninja vala libxslt pkgconfig wrapGAppsHook
|
||||||
gettext docbook_xsl libxml2 gobject-introspection python3
|
gettext docbook_xsl libxml2 gobject-introspection python3
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ glib gtk3 gnome3.dconf ];
|
buildInputs = [ glib gtk3 gnome3.dconf ];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, desktop-file-utils, gnome3, glib, gtk3, libexif, libtiff, colord, colord-gtk, libcanberra-gtk3, lcms2, vte, exiv2, hicolor-icon-theme }:
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, desktop-file-utils, gnome3, glib, gtk3, libexif, libtiff, colord, colord-gtk, libcanberra-gtk3, lcms2, vte, exiv2 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "gnome-color-manager";
|
pname = "gnome-color-manager";
|
||||||
|
@ -13,8 +13,6 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja pkgconfig gettext itstool desktop-file-utils
|
meson ninja pkgconfig gettext itstool desktop-file-utils
|
||||||
# setup-hook
|
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ glib gtk3 libexif libtiff colord colord-gtk libcanberra-gtk3 lcms2 vte exiv2 ];
|
buildInputs = [ glib gtk3 libexif libtiff colord colord-gtk libcanberra-gtk3 lcms2 vte exiv2 ];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, substituteAll, pkgconfig, meson, ninja, gettext, gnome3, wrapGAppsHook, packagekit, ostree
|
{ stdenv, fetchurl, substituteAll, pkgconfig, meson, ninja, gettext, gnome3, wrapGAppsHook, packagekit, ostree
|
||||||
, glib, appstream-glib, libsoup, polkit, isocodes, gspell, libxslt, gobject-introspection, flatpak, fwupd
|
, glib, appstream-glib, libsoup, polkit, isocodes, gspell, libxslt, gobject-introspection, flatpak, fwupd
|
||||||
, gtk3, gsettings-desktop-schemas, gnome-desktop, libxmlb, gnome-online-accounts, hicolor-icon-theme
|
, gtk3, gsettings-desktop-schemas, gnome-desktop, libxmlb, gnome-online-accounts
|
||||||
, json-glib, libsecret, valgrind-light, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_43, gtk-doc, desktop-file-utils }:
|
, json-glib, libsecret, valgrind-light, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_43, gtk-doc, desktop-file-utils }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -28,7 +28,6 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja pkgconfig gettext wrapGAppsHook libxslt docbook_xml_dtd_42 docbook_xml_dtd_43
|
meson ninja pkgconfig gettext wrapGAppsHook libxslt docbook_xml_dtd_42 docbook_xml_dtd_43
|
||||||
valgrind-light docbook_xsl gtk-doc desktop-file-utils gobject-introspection
|
valgrind-light docbook_xsl gtk-doc desktop-file-utils gobject-introspection
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libxml2, gnome3, dconf, nautilus
|
{ stdenv, fetchurl, pkgconfig, libxml2, gnome3, dconf, nautilus
|
||||||
, gtk3, gsettings-desktop-schemas, vte, intltool, which, libuuid, vala
|
, gtk3, gsettings-desktop-schemas, vte, intltool, which, libuuid, vala
|
||||||
, desktop-file-utils, itstool, wrapGAppsHook, hicolor-icon-theme }:
|
, desktop-file-utils, itstool, wrapGAppsHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-terminal";
|
pname = "gnome-terminal";
|
||||||
|
@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig intltool itstool which libxml2
|
pkgconfig intltool itstool which libxml2
|
||||||
vala desktop-file-utils wrapGAppsHook
|
vala desktop-file-utils wrapGAppsHook
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Silly ./configure, it looks for dbus file from gnome-shell in the
|
# Silly ./configure, it looks for dbus file from gnome-shell in the
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||||
, librsvg, libcanberra-gtk3, gettext, itstool, libxml2, libgnome-games-support
|
, librsvg, libcanberra-gtk3, gettext, itstool, libxml2, libgnome-games-support
|
||||||
, libgee, meson, ninja, python3, desktop-file-utils , hicolor-icon-theme, adwaita-icon-theme }:
|
, libgee, meson, ninja, python3, desktop-file-utils, adwaita-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-robots";
|
pname = "gnome-robots";
|
||||||
|
@ -18,7 +18,6 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig meson ninja python3
|
pkgconfig meson ninja python3
|
||||||
libxml2 wrapGAppsHook gettext itstool desktop-file-utils
|
libxml2 wrapGAppsHook gettext itstool desktop-file-utils
|
||||||
hicolor-icon-theme # For setup-hook
|
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 librsvg libcanberra-gtk3 libgnome-games-support libgee adwaita-icon-theme
|
gtk3 librsvg libcanberra-gtk3 libgnome-games-support libgee adwaita-icon-theme
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
, meson
|
, meson
|
||||||
, ninja
|
, ninja
|
||||||
, python3
|
, python3
|
||||||
, hicolor-icon-theme
|
|
||||||
, libdazzle
|
, libdazzle
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -66,7 +65,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
hicolor-icon-theme
|
|
||||||
gettext
|
gettext
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, meson, ninja, gettext, gnome3, packagekit, polkit
|
{ stdenv, fetchurl, pkgconfig, meson, ninja, gettext, gnome3, packagekit, polkit
|
||||||
, gtk3, systemd, wrapGAppsHook, desktop-file-utils, hicolor-icon-theme }:
|
, gtk3, systemd, wrapGAppsHook, desktop-file-utils }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-packagekit";
|
pname = "gnome-packagekit";
|
||||||
|
@ -12,7 +12,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig meson ninja gettext wrapGAppsHook desktop-file-utils
|
pkgconfig meson ninja gettext wrapGAppsHook desktop-file-utils
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ gtk3 packagekit systemd polkit ];
|
buildInputs = [ gtk3 packagekit systemd polkit ];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, pcre, qtbase, qttools,
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, pcre, qtbase, qttools,
|
||||||
qtx11extras, xorg, lxqt-build-tools, openbox, hicolor-icon-theme }:
|
qtx11extras, xorg, lxqt-build-tools, openbox }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "obconf-qt";
|
pname = "obconf-qt";
|
||||||
|
@ -27,7 +27,6 @@ mkDerivation rec {
|
||||||
xorg.libXdmcp
|
xorg.libXdmcp
|
||||||
xorg.libSM
|
xorg.libSM
|
||||||
openbox
|
openbox
|
||||||
hicolor-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook gtk3 ];
|
nativeBuildInputs = [ autoreconfHook gtk3 ];
|
||||||
|
|
||||||
buildInputs = [ mate.mate-icon-theme hicolor-icon-theme ];
|
buildInputs = [ mate.mate-icon-theme ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for theme in "$out"/share/icons/*; do
|
for theme in "$out"/share/icons/*; do
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, librsvg, hicolor-icon-theme, gtk3 }:
|
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, librsvg, gtk3, hicolor-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mate-icon-theme";
|
pname = "mate-icon-theme";
|
||||||
|
@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
|
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
|
||||||
|
|
||||||
buildInputs = [ librsvg hicolor-icon-theme ];
|
buildInputs = [ librsvg ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for theme in "$out"/share/icons/*; do
|
for theme in "$out"/share/icons/*; do
|
||||||
|
|
|
@ -39,6 +39,8 @@ stdenv.mkDerivation rec {
|
||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
];
|
];
|
||||||
|
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dvolume_icons=false" # Tries to install some icons to /
|
"-Dvolume_icons=false" # Tries to install some icons to /
|
||||||
"-Dpalettes=false" # Don't install gimp and inkscape palette files
|
"-Dpalettes=false" # Don't install gimp and inkscape palette files
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
, gtk3
|
, gtk3
|
||||||
, glib
|
, glib
|
||||||
, gettext
|
, gettext
|
||||||
, hicolor-icon-theme
|
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
@ -56,7 +55,6 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib
|
glib
|
||||||
gtk3
|
gtk3
|
||||||
hicolor-icon-theme
|
|
||||||
libgee
|
libgee
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libxml2, gtk, libSM, shared-mime-info, hicolor-icon-theme }:
|
{ stdenv, fetchurl, pkgconfig, libxml2, gtk, libSM, shared-mime-info }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "2.11";
|
version = "2.11";
|
||||||
|
@ -12,7 +12,7 @@ in stdenv.mkDerivation {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libxml2 gtk shared-mime-info hicolor-icon-theme libSM ];
|
buildInputs = [ libxml2 gtk shared-mime-info libSM ];
|
||||||
NIX_LDFLAGS = [ "-ldl" "-lm" ];
|
NIX_LDFLAGS = [ "-ldl" "-lm" ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, vala, glib, libxslt, gtk3, wrapGAppsHook
|
{ stdenv, fetchurl, pkgconfig, vala, glib, libxslt, gtk3, wrapGAppsHook
|
||||||
, webkitgtk, json-glib, librest, libsecret, gtk-doc, gobject-introspection
|
, webkitgtk, json-glib, librest, libsecret, gtk-doc, gobject-introspection
|
||||||
, gettext, icu, glib-networking, hicolor-icon-theme
|
, gettext, icu, glib-networking
|
||||||
, libsoup, docbook_xsl, docbook_xml_dtd_412, gnome3, gcr, kerberos
|
, libsoup, docbook_xsl, docbook_xml_dtd_412, gnome3, gcr, kerberos
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -31,7 +31,6 @@ in stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig gobject-introspection vala gettext wrapGAppsHook
|
pkgconfig gobject-introspection vala gettext wrapGAppsHook
|
||||||
libxslt docbook_xsl docbook_xml_dtd_412 gtk-doc
|
libxslt docbook_xsl docbook_xml_dtd_412 gtk-doc
|
||||||
hicolor-icon-theme # for setup-hook
|
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib gtk3 webkitgtk json-glib librest libsecret glib-networking icu libsoup
|
glib gtk3 webkitgtk json-glib librest libsecret glib-networking icu libsoup
|
||||||
|
|
|
@ -25,9 +25,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHooks = [
|
||||||
|
./gtk2-clean-immodules-cache.sh
|
||||||
|
./drop-icon-theme-cache.sh
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ setupHook perl pkgconfig gettext gobject-introspection ];
|
nativeBuildInputs = [ setupHooks perl pkgconfig gettext gobject-introspection ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./2.0-immodules.cache.patch
|
./2.0-immodules.cache.patch
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
, libxkbcommon
|
, libxkbcommon
|
||||||
, gmp
|
, gmp
|
||||||
, gnome3
|
, gnome3
|
||||||
, hicolor-icon-theme
|
|
||||||
, gsettings-desktop-schemas
|
, gsettings-desktop-schemas
|
||||||
, sassc
|
, sassc
|
||||||
, x11Support ? stdenv.isLinux
|
, x11Support ? stdenv.isLinux
|
||||||
|
@ -50,7 +49,10 @@ stdenv.mkDerivation rec {
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
outputBin = "dev";
|
outputBin = "dev";
|
||||||
|
|
||||||
setupHook = ./gtk3-setup-hook.sh;
|
setupHooks = [
|
||||||
|
./gtk3-clean-immodules-cache.sh
|
||||||
|
./drop-icon-theme-cache.sh
|
||||||
|
];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
|
url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
|
||||||
|
@ -103,14 +105,13 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gettext
|
gettext
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
hicolor-icon-theme # setup-hook
|
|
||||||
makeWrapper
|
makeWrapper
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
pkgconfig
|
pkgconfig
|
||||||
python3
|
python3
|
||||||
sassc
|
sassc
|
||||||
setupHook
|
setupHooks
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
|
# Packages often run gtk-update-icon-cache to include their icons in themes’ icon cache.
|
||||||
|
# However, since each package is installed to its own prefix, the files will only collide.
|
||||||
|
dropIconThemeCache() {
|
||||||
|
if [[ -z "${dontDropIconThemeCache:-}" ]]; then
|
||||||
|
local icondir="${out:?}/share/icons"
|
||||||
|
if [[ -d "${icondir}" ]]; then
|
||||||
|
# App icons are supposed to go to hicolor theme, since it is a fallback theme as per [icon-theme-spec], but some might still choose to install stylized icons to other themes.
|
||||||
|
find "${icondir}" -name 'icon-theme.cache' -print0 \
|
||||||
|
| while IFS= read -r -d '' file; do
|
||||||
|
echo "Removing ${file}"
|
||||||
|
rm -f "${file}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
preFixupPhases="$preFixupPhases dropIconThemeCache"
|
|
@ -1,8 +1,10 @@
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
fixupOutputHooks+=(_gtk2CleanComments)
|
fixupOutputHooks+=(_gtk2CleanComments)
|
||||||
|
|
||||||
# Clean comments that link to generator of the file
|
# Clean comments that link to generator of the file
|
||||||
_gtk2CleanComments() {
|
_gtk2CleanComments() {
|
||||||
local f="$prefix/lib/gtk-2.0/2.10.0/immodules.cache"
|
local f="${prefix:?}/lib/gtk-2.0/2.10.0/immodules.cache"
|
||||||
if [ -f "$f" ]; then
|
if [ -f "$f" ]; then
|
||||||
sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f"
|
sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f"
|
||||||
fi
|
fi
|
|
@ -1,10 +1,11 @@
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
fixupOutputHooks+=(_gtk3CleanComments)
|
fixupOutputHooks+=(_gtk3CleanComments)
|
||||||
|
|
||||||
# Clean comments that link to generator of the file
|
# Clean comments that link to generator of the file
|
||||||
_gtk3CleanComments() {
|
_gtk3CleanComments() {
|
||||||
local f="$prefix/lib/gtk-3.0/3.0.0/immodules.cache"
|
local f="${prefix:?}/lib/gtk-3.0/3.0.0/immodules.cache"
|
||||||
if [ -f "$f" ]; then
|
if [ -f "$f" ]; then
|
||||||
sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f"
|
sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
{ mkDerivation, lib, extra-cmake-modules, gtk3, qtsvg }:
|
{ mkDerivation, lib, extra-cmake-modules, gtk3, qtsvg, hicolor-icon-theme }:
|
||||||
|
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
name = "breeze-icons";
|
name = "breeze-icons";
|
||||||
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
||||||
nativeBuildInputs = [ extra-cmake-modules gtk3 ];
|
nativeBuildInputs = [ extra-cmake-modules gtk3 ];
|
||||||
buildInputs = [ qtsvg ];
|
buildInputs = [ qtsvg ];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hicolor-icon-theme
|
||||||
|
];
|
||||||
|
dontDropIconThemeCache = true;
|
||||||
outputs = [ "out" ]; # only runtime outputs
|
outputs = [ "out" ]; # only runtime outputs
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
gtk-update-icon-cache "''${out:?}/share/icons/breeze"
|
gtk-update-icon-cache "''${out:?}/share/icons/breeze"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, gtk2, pkgconfig, hicolor-icon-theme }:
|
{stdenv, fetchurl, gtk2, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "gtkdialog-0.8.3";
|
name = "gtkdialog-0.8.3";
|
||||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk2 hicolor-icon-theme ];
|
buildInputs = [ gtk2 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://code.google.com/archive/p/gtkdialog/;
|
homepage = https://code.google.com/archive/p/gtkdialog/;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, buildPythonApplication, fetchFromGitHub
|
{ stdenv, buildPythonApplication, fetchFromGitHub
|
||||||
, gtk3, wrapGAppsHook, gst_all_1, gobject-introspection
|
, gtk3, wrapGAppsHook, gst_all_1, gobject-introspection
|
||||||
, python3Packages, gnome3, hicolor-icon-theme }:
|
, python3Packages, gnome3 }:
|
||||||
|
|
||||||
buildPythonApplication {
|
buildPythonApplication {
|
||||||
pname = "gscrabble";
|
pname = "gscrabble";
|
||||||
|
@ -19,7 +19,7 @@ buildPythonApplication {
|
||||||
|
|
||||||
buildInputs = with gst_all_1; [
|
buildInputs = with gst_all_1; [
|
||||||
gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad
|
gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad
|
||||||
hicolor-icon-theme gnome3.adwaita-icon-theme gtk3 gobject-introspection
|
gnome3.adwaita-icon-theme gtk3 gobject-introspection
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [ gst-python pygobject3 ];
|
propagatedBuildInputs = with python3Packages; [ gst-python pygobject3 ];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk3, hicolor-icon-theme }:
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "screen-message";
|
pname = "screen-message";
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ gtk3 hicolor-icon-theme ];
|
buildInputs = [ gtk3 ];
|
||||||
|
|
||||||
# screen-message installs its binary in $(prefix)/games per default
|
# screen-message installs its binary in $(prefix)/games per default
|
||||||
makeFlags = [ "execgamesdir=$(out)/bin" ];
|
makeFlags = [ "execgamesdir=$(out)/bin" ];
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt, hicolor-icon-theme }:
|
{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.5.4.14";
|
version = "0.5.4.14";
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk3 intltool libxslt hicolor-icon-theme ];
|
buildInputs = [ gtk3 intltool libxslt ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
|
description = "GTK frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, intltool, gettext, makeWrapper, coreutils, gnused, gnome3
|
{ stdenv, fetchurl, intltool, gettext, makeWrapper, coreutils, gnused, gnome3
|
||||||
, gnugrep, parted, glib, libuuid, pkgconfig, gtkmm3, libxml2, hicolor-icon-theme
|
, gnugrep, parted, glib, libuuid, pkgconfig, gtkmm3, libxml2
|
||||||
, gpart, hdparm, procps, utillinux, polkit, wrapGAppsHook, substituteAll
|
, gpart, hdparm, procps, utillinux, polkit, wrapGAppsHook, substituteAll
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [ "--disable-doc" ];
|
configureFlags = [ "--disable-doc" ];
|
||||||
|
|
||||||
buildInputs = [ parted glib libuuid gtkmm3 libxml2 hicolor-icon-theme polkit.bin gnome3.adwaita-icon-theme ];
|
buildInputs = [ parted glib libuuid gtkmm3 libxml2 polkit.bin gnome3.adwaita-icon-theme ];
|
||||||
nativeBuildInputs = [ intltool gettext pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ intltool gettext pkgconfig wrapGAppsHook ];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
|
|
Loading…
Reference in New Issue