--- Begin Message ---
Subject: |
[PATCH] gnu: Add yad. |
Date: |
Thu, 30 Aug 2018 11:51:52 +0200 |
gnu/packages/gtk.scm (yad): New variable.
---
gnu/packages/gtk.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 8b11e3fb1..9b20f4f96 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2017 Marius Bakke <address@hidden>
;;; Copyright © 2018 Alex Vong <address@hidden>
;;; Copyright © 2018 Arun Isaac <address@hidden>
+;;; Copyright © 2018 Mădălin Ionel Patrașcu <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1651,3 +1652,44 @@ Parcellite and adds bugfixes and features.")
it does not deal with windowing system surfaces, drawing, scene graphs, or
input.")
(license license:expat)))
+
+(define-public yad
+ (package
+ (name "yad")
+ (version "0.40.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"https://github.com/v1cont/"name"/archive/v"version".tar.gz"))
+ (sha256
+ (base32 "1fs892d0xq2x43blqfxrlif22n1mnpbbw6lj8mfvm9j637m8hfm6"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ '("--with-gtk=gtk3"
+ "--enable-html"
+ "--enable-gio"
+ "--enable-spell"
+ "--enable-icon-browser")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'bootstrap
+ (lambda _
+ (invoke "autoreconf" "-vif")
+ (invoke "intltoolize" "--force" "--automake")
+ #t)))))
+ (inputs
+ `(("gtk+" ,gtk+)))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("intltool" ,intltool)
+ ("pkg-config" ,pkg-config)))
+ (home-page "https://sourceforge.net/projects/yad-dialog/")
+ (synopsis "Standard dialog boxes for Windows, MacOS and Linux")
+ (description
+ "This program allows you to display GTK+ dialog boxes from command line
or shell
+scripts. More example of @code{yad} usage can be consulted at
address@hidden://sourceforge.net/p/yad-dialog/wiki/browse_pages/}. The
@code{yad}
+depends on GTK+ only.")
+ (license license:gpl3)))
--
2.17.1
--- End Message ---