From b7c0f858a4bedb6a33303c6c944155c6c211fc2e Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 5 Dec 2017 23:59:07 +0100 Subject: [PATCH] parcellite: use wrapGAppsHook Also add hicolor icon theme as a dependency. These are needed for parcellite to find icons. --- pkgs/tools/misc/parcellite/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/parcellite/default.nix b/pkgs/tools/misc/parcellite/default.nix index 0865044eac6..93064c6dc8e 100644 --- a/pkgs/tools/misc/parcellite/default.nix +++ b/pkgs/tools/misc/parcellite/default.nix @@ -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";