mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #8306 from DamienCassou/8305-gparted-gmpc-should-depend-on-hicolor_icon_theme
Add hicolor_icon_theme dependency
This commit is contained in:
commit
da10587d1b
2 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, libtool, intltool, pkgconfig, glib
|
||||
, gtk, curl, mpd_clientlib, libsoup, gob2, vala, libunique
|
||||
, libSM, libICE, sqlite
|
||||
, libSM, libICE, sqlite, hicolor_icon_theme
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
libtool intltool pkgconfig glib gtk curl mpd_clientlib libsoup
|
||||
libunique libmpd gob2 vala libSM libICE sqlite
|
||||
libunique libmpd gob2 vala libSM libICE sqlite hicolor_icon_theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{ stdenv, fetchurl, parted, gtk, glib, intltool, gettext, libuuid
|
||||
, pkgconfig, gtkmm, libxml2 }:
|
||||
, pkgconfig, gtkmm, libxml2, hicolor_icon_theme
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gparted-0.22.0";
|
||||
|
@ -12,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||
configureFlags = "--disable-doc";
|
||||
|
||||
buildInputs = [
|
||||
parted gtk glib intltool gettext libuuid pkgconfig gtkmm libxml2
|
||||
parted gtk glib intltool gettext libuuid pkgconfig gtkmm libxml2 hicolor_icon_theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue