guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

25/47: gnu: Add r-fgui.


From: guix-commits
Subject: 25/47: gnu: Add r-fgui.
Date: Fri, 13 Dec 2019 16:42:18 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 5a5431e406fb75fef1d80a937e1b4ed605ed30fa
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Dec 13 18:48:12 2019 +0100

    gnu: Add r-fgui.
    
    * gnu/packages/cran.scm (r-fgui): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 2de143c..ea99949 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -16657,3 +16657,30 @@ practicals outlined in Appendix A of the book 
Statistical Models (Davison,
 2003, Cambridge University Press).  The practicals themselves can be found at
 @url{http://statwww.epfl.ch/davison/SM/}.";)
     (license license:gpl2+)))
+
+(define-public r-fgui
+  (package
+    (name "r-fgui")
+    (version "1.0-8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "fgui" version))
+       (sha256
+        (base32
+         "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
+    (properties `((upstream-name . "fgui")))
+    (build-system r-build-system)
+    (home-page
+     "https://sites.google.com/site/thomashoffmannproject/software/fgui";)
+    (synopsis "Create GUI for R functions")
+    (description
+     "Rapidly create a GUI for a function you created by automatically
+creating widgets for arguments of the function.  This package automatically
+parses help routines for context-sensitive help to these arguments.  The
+interface is essentially a wrapper to some Tcl/Tk routines to both simplify
+and facilitate GUI creation.  More advanced Tcl/Tk routines/GUI objects can be
+incorporated into the interface for greater customization for the more
+experienced.")
+    ;; Any version of the GPL.
+    (license (list license:gpl2+ license:gpl3+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]