[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
265/295: gnu: zenity: Update package definition.
From: |
guix-commits |
Subject: |
265/295: gnu: zenity: Update package definition. |
Date: |
Mon, 27 Jul 2020 06:26:32 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 1a2ba800874f1019307a318b89d1e0607dc6b9f6
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 0316a42..f772b9c 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6989,27 +6989,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
- 242/295: gnu: Add rust-nalgebra@0.19.0., (continued)
- 242/295: gnu: Add rust-nalgebra@0.19.0., guix-commits, 2020/07/27
- 252/295: gnu: pango: Update package definition., guix-commits, 2020/07/27
- 251/295: gnu: Add libthai., guix-commits, 2020/07/27
- 250/295: gnu: Add libdatrie., guix-commits, 2020/07/27
- 249/295: gnu: tesseract-ocr: Propagate leptonica., guix-commits, 2020/07/27
- 253/295: gnu: vala: Update package definition., guix-commits, 2020/07/27
- 257/295: gnu: Add wpewebkit., guix-commits, 2020/07/27
- 260/295: gnu: pipewire: Update package definition., guix-commits, 2020/07/27
- 262/295: gnu: yelp-xsl: Update package definition., guix-commits, 2020/07/27
- 259/295: gnu: Add xmltoman., guix-commits, 2020/07/27
- 265/295: gnu: zenity: Update package definition.,
guix-commits <=
- 268/295: gnu: cairo: Update package definition., guix-commits, 2020/07/27
- 270/295: gnu: Add libsigc++-2., guix-commits, 2020/07/27
- 274/295: gnu: Add glibmm-2.64., guix-commits, 2020/07/27
- 275/295: gnu: atkmm: Update package definition., guix-commits, 2020/07/27
- 276/295: gnu: pangomm: Update package definition., guix-commits, 2020/07/27
- 277/295: gnu: Add pangomm-2.42., guix-commits, 2020/07/27
- 279/295: gnu: gtkmm: Update package definition., guix-commits, 2020/07/27
- 282/295: gnu: gobject-introspection: Propagate glib., guix-commits, 2020/07/27
- 285/295: gnu: evolution-data-server: Update package definition., guix-commits, 2020/07/27
- 288/295: gnu: Add zeitgeist., guix-commits, 2020/07/27