[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
145/277: gnu: zenity: Update package definition.
From: |
guix-commits |
Subject: |
145/277: gnu: zenity: Update package definition. |
Date: |
Thu, 6 Aug 2020 17:03:18 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit a1afaa2562007d3533d189062e28e5e77bbe0bb6
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 a1f242e..03d4427 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6873,27 +6873,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
- 144/277: gnu: yelp: Update package definition., (continued)
- 144/277: gnu: yelp: Update package definition., guix-commits, 2020/08/06
- 155/277: gnu: pangomm: Update package definition., guix-commits, 2020/08/06
- 161/277: gnu: gobject-introspection: Propagate glib., guix-commits, 2020/08/06
- 165/277: gnu: Add gtx., guix-commits, 2020/08/06
- 167/277: gnu: Add zeitgeist., guix-commits, 2020/08/06
- 170/277: gnu: Add mmm., guix-commits, 2020/08/06
- 173/277: gnu: geocode-glib: Update package definition., guix-commits, 2020/08/06
- 174/277: gnu: gexiv2: Update package definition., guix-commits, 2020/08/06
- 140/277: gnu: pipewire: Update package definition., guix-commits, 2020/08/06
- 143/277: gnu: yelp-tools: Update package definition., guix-commits, 2020/08/06
- 145/277: gnu: zenity: Update package definition.,
guix-commits <=
- 163/277: gnu: babl: Update package definition., guix-commits, 2020/08/06
- 148/277: gnu: libsigc++: Update package definition., guix-commits, 2020/08/06
- 149/277: gnu: Add libsigc++-2., guix-commits, 2020/08/06
- 164/277: gnu: evolution-data-server: Update package definition., guix-commits, 2020/08/06
- 166/277: gnu: Add dee., guix-commits, 2020/08/06
- 168/277: gnu: folks: Update package definition., guix-commits, 2020/08/06
- 169/277: gnu: Add poly2tri-c., guix-commits, 2020/08/06
- 184/277: gnu: grilo: Update package definition., guix-commits, 2020/08/06
- 188/277: gnu: gupnp: Update package definition., guix-commits, 2020/08/06
- 193/277: gnu: gspell: Update package definition., guix-commits, 2020/08/06