[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
145/331: gnu: zenity: Update package definition.
From: |
guix-commits |
Subject: |
145/331: gnu: zenity: Update package definition. |
Date: |
Fri, 14 Aug 2020 11:13:23 -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
- 135/331: gnu: wpebackend-fdo: Update package definition., (continued)
- 135/331: gnu: wpebackend-fdo: Update package definition., guix-commits, 2020/08/14
- 111/331: gnu: Add rust-serial-test@0.1.0., guix-commits, 2020/08/14
- 116/331: gnu: Add rust-derive-more@0.99.9., guix-commits, 2020/08/14
- 126/331: gnu: Add openjpeg-data., guix-commits, 2020/08/14
- 128/331: gnu: gtk+: Add missing input., guix-commits, 2020/08/14
- 133/331: gnu: vala: Update package definition., guix-commits, 2020/08/14
- 140/331: gnu: pipewire: Update package definition., guix-commits, 2020/08/14
- 141/331: gnu: webkitgtk: Update package definition., guix-commits, 2020/08/14
- 143/331: gnu: yelp-tools: Update package definition., guix-commits, 2020/08/14
- 144/331: gnu: yelp: Update package definition., guix-commits, 2020/08/14
- 145/331: gnu: zenity: Update package definition.,
guix-commits <=
- 156/331: gnu: Add pangomm-2.42., guix-commits, 2020/08/14
- 161/331: gnu: gobject-introspection: Propagate glib., guix-commits, 2020/08/14
- 163/331: gnu: babl: Update package definition., guix-commits, 2020/08/14
- 165/331: gnu: Add gtx., guix-commits, 2020/08/14
- 166/331: gnu: Add dee., guix-commits, 2020/08/14
- 170/331: gnu: Add mmm., guix-commits, 2020/08/14
- 180/331: gnu: gnome-video-effects: Update package definition., guix-commits, 2020/08/14
- 147/331: gnu: cairo: Update package definition., guix-commits, 2020/08/14
- 159/331: gnu: gtkmm-2: Update package definition., guix-commits, 2020/08/14
- 138/331: gnu: Add libcamera., guix-commits, 2020/08/14