parcellite: use wrapGAppsHook

Also add hicolor icon theme as a dependency. These are needed for
parcellite to find icons.
This commit is contained in:
Robert Helgesson 2017-12-05 23:59:07 +01:00
parent 5b9e29c01c
commit b7c0f858a4
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, autoreconfHook
, gtk2, intltool, pkgconfig }:
, gtk2, hicolor_icon_theme, intltool, pkgconfig, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "parcellite-${version}";
@ -12,8 +12,8 @@ stdenv.mkDerivation rec {
sha256 = "19q4x6x984s6gxk1wpzaxawgvly5vnihivrhmja2kcxhzqrnfhiy";
};
nativeBuildInputs = [ autoreconfHook intltool pkgconfig ];
buildInputs = [ gtk2 ];
nativeBuildInputs = [ autoreconfHook intltool pkgconfig wrapGAppsHook ];
buildInputs = [ gtk2 hicolor_icon_theme ];
meta = with stdenv.lib; {
description = "Lightweight GTK+ clipboard manager";