[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
145/402: gnu: zenity: Update package definition.
From: |
guix-commits |
Subject: |
145/402: gnu: zenity: Update package definition. |
Date: |
Tue, 18 Aug 2020 16:47:21 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 87686f7fb00329b937ae7dfec64bb052c924048f
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Wed Jul 15 21:11:06 2020 -0400
gnu: zenity: Update package definition.
* gnu/packages/gnome.scm (zenity): Update package definition.
[build-system]: Change from gnu to glib-or-gtk.
[outputs]: New output "help".
[arguments]<#:configure-flags>[--enable-libnotify]: New flag.
[--enable-webkitgtk]: New flag.
[--with-help-dir=]: New flag.
[native-inputs]: Add glib:bin, gtk+:bin, perl and libxml2.
[inputs]: Add glib, gtk+ and libx11.
[synopsis]: Modify.
[description]: Modify.
[home-page]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 48 ++++++++++++++++++++++++++++++++----------------
1 file changed, 32 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a1a1ea4..72a5ee9 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6878,27 +6878,43 @@ powerful general purpose text editor.")
(package
(name "zenity")
(version "3.32.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/zenity/"
- (version-major+minor version) "/"
- "zenity-" version ".tar.xz"))
- (sha256
- (base32
- "15fdh8xfdhnwcynyh4byx3mrjxbyprqnwxzi7qn3g5wwaqryg1p7"))))
- (build-system gnu-build-system)
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/zenity/"
+ (version-major+minor version) "/"
+ "zenity-" version ".tar.xz"))
+ (sha256
+ (base32 "15fdh8xfdhnwcynyh4byx3mrjxbyprqnwxzi7qn3g5wwaqryg1p7"))))
+ (build-system glib-or-gtk-build-system)
+ (outputs '("out" "help"))
+ (arguments
+ `(#:configure-flags
+ (list
+ "--enable-libnotify"
+ "--enable-webkitgtk"
+ (string-append "--with-help-dir="
+ (assoc-ref %outputs "help")
+ "/share/help"))))
(native-inputs
`(("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gtk+:bin" ,gtk+ "bin")
("itstool" ,itstool)
- ("pkg-config" ,pkg-config)))
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("xmllint" ,libxml2)))
(inputs
- `(("libnotify" ,libnotify)
+ `(("glib" ,glib)
+ ("gtk+" ,gtk+)
+ ("libnotify" ,libnotify)
+ ("x11" ,libx11)
("webkitgtk" ,webkitgtk)))
- (synopsis "Display graphical dialog boxes from shell scripts")
- (home-page "https://www.gnome.org";)
- (description
- "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you
-to display dialog boxes from the commandline and shell scripts.")
+ (synopsis "Rewrite of gdialog")
+ (description "Zenity is a tool that allows you to display GTK dialog boxes
+in commandline and shell scripts.")
+ (home-page "https://wiki.gnome.org/Projects/Zenity";)
(license license:lgpl2.0+)))
(define-public mutter
- 79/402: gnu: Add zxing-cpp., (continued)
- 79/402: gnu: Add zxing-cpp., guix-commits, 2020/08/18
- 103/402: gnu: libgee: Update package definition., guix-commits, 2020/08/18
- 106/402: gnu: Add rust-cssparser-macros@0.6.0., guix-commits, 2020/08/18
- 110/402: gnu: Add rust-serial-test@0.4.0., guix-commits, 2020/08/18
- 92/402: gnu: fuse: Update package definition., guix-commits, 2020/08/18
- 108/402: gnu: Add rust-downcast-rs@1.2.0., guix-commits, 2020/08/18
- 113/402: gnu: Add rust-string-cache@0.8.0., guix-commits, 2020/08/18
- 138/402: gnu: Add libcamera., guix-commits, 2020/08/18
- 119/402: git: rust-rgb: Update to 0.8.20., guix-commits, 2020/08/18
- 142/402: gnu: yelp-xsl: Update package definition., guix-commits, 2020/08/18
- 145/402: gnu: zenity: Update package definition.,
guix-commits <=
- 152/402: gnu: glibmm: Update package definition., guix-commits, 2020/08/18
- 154/402: gnu: atkmm: Update package definition., guix-commits, 2020/08/18
- 140/402: gnu: pipewire: Update package definition., guix-commits, 2020/08/18
- 158/402: gnu: gtkmm: Update package definition., guix-commits, 2020/08/18
- 161/402: gnu: gobject-introspection: Propagate glib., guix-commits, 2020/08/18
- 56/402: gnu: Add flux., guix-commits, 2020/08/18
- 58/402: gnu: Add directfb., guix-commits, 2020/08/18
- 71/402: gnu: Add lksctp-tools., guix-commits, 2020/08/18
- 83/402: gnu: Add rust-imgref., guix-commits, 2020/08/18
- 89/402: gnu: gtksourceview: Update package definition., guix-commits, 2020/08/18