diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-10-27 21:02:39 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-10-27 21:03:08 +0300 |
commit | 377bfbc1f8006a4f851ebac6cb995e96af51efa0 (patch) | |
tree | 82c94a9e03dbb0026857d3c530956bdc2acb0884 /gnu | |
parent | f02fb6dd6b6dbf91c3497a086bab5d9e791b2468 (diff) | |
download | guix-377bfbc1f8006a4f851ebac6cb995e96af51efa0.tar guix-377bfbc1f8006a4f851ebac6cb995e96af51efa0.tar.gz |
gnu: gxmessage: Add missing input.
* gnu/packages/gxmessage.scm (gxmessage)[native-inputs]: Add gtk+3-bin.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gxmessage.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gxmessage.scm b/gnu/packages/gxmessage.scm index a6ad7075a7..53e5daa233 100644 --- a/gnu/packages/gxmessage.scm +++ b/gnu/packages/gxmessage.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 John Darrington <jmd@gnu.org> +;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -40,7 +41,8 @@ (inputs `(("gtk+" ,gtk+))) (native-inputs - `(("intltool" ,intltool) + `(("gtk+-bin" ,gtk+ "bin") ; gtk-update-icon-cache + ("intltool" ,intltool) ("pkg-config" ,pkg-config))) (home-page "http://www.gnu.org/software/gxmessage/") (synopsis "Open popup message window with buttons for return") |