mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 10:55:23 -05:00
gnu: Add r-tcltk2.
* gnu/packages/cran.scm (r-tcltk2): New variable.
This commit is contained in:
parent
5a5431e406
commit
f9d9c83183
1 changed files with 24 additions and 0 deletions
|
@ -73,6 +73,7 @@ (define-module (gnu packages cran)
|
|||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages statistics)
|
||||
#:use-module (gnu packages tcl)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
@ -16684,3 +16685,26 @@ (define-public r-fgui
|
|||
experienced.")
|
||||
;; Any version of the GPL.
|
||||
(license (list license:gpl2+ license:gpl3+))))
|
||||
|
||||
(define-public r-tcltk2
|
||||
(package
|
||||
(name "r-tcltk2")
|
||||
(version "1.2-11")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "tcltk2" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
|
||||
(properties `((upstream-name . "tcltk2")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("tcl" ,tcl)
|
||||
("tk" ,tk)))
|
||||
(home-page "http://www.sciviews.org/SciViews-R")
|
||||
(synopsis "Tcl/Tk additions")
|
||||
(description
|
||||
"This package provides a series of additional Tcl commands and Tk widgets
|
||||
with style and various functions to supplement the tcltk package")
|
||||
(license license:lgpl3)))
|
||||
|
|
Loading…
Reference in a new issue