gtkdialog: Add missing dependency on hicolor_icon_theme (#9369)

This commit is contained in:
Jascha Geerds 2015-08-20 16:03:58 +02:00
parent 304a5e6168
commit 50d90a2538

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, gtk, pkgconfig}:
{stdenv, fetchurl, gtk, pkgconfig, hicolor_icon_theme }:
stdenv.mkDerivation {
name = "gtkdialog-0.8.3";
@ -8,7 +8,7 @@ stdenv.mkDerivation {
sha256 = "ff89d2d7f1e6488e5df5f895716ac1d4198c2467a2a5dc1f51ab408a2faec38e";
};
buildInputs = [ gtk pkgconfig ];
buildInputs = [ gtk pkgconfig hicolor_icon_theme ];
meta = {
homepage = http://gtkdialog.googlecode.com/;