mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add dionysus.
* gnu/packages/maths.scm (dionysus): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
acf735f2be
commit
182d6311c2
1 changed files with 24 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
||||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2014 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2014 Federico Beffa <beffa@fbengineering.ch>
|
||||||
|
;;; Copyright © 2014 Mathieu Lirzin <mathieu.lirzin@openmailbox.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -84,6 +85,29 @@ (define-public units
|
||||||
(license license:gpl3+)
|
(license license:gpl3+)
|
||||||
(home-page "http://www.gnu.org/software/units/")))
|
(home-page "http://www.gnu.org/software/units/")))
|
||||||
|
|
||||||
|
(define-public dionysus
|
||||||
|
(package
|
||||||
|
(name "dionysus")
|
||||||
|
(version "1.3.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnu/dionysus/dionysus-" version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1aqnvw6z33bzqgd1ga571pnx6vq2zrkckm1cz91grv45h4jr9vgs"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs `(("tcl" ,tcl))) ;for 'tclsh'
|
||||||
|
(synopsis "Local search for universal constants and scientific values")
|
||||||
|
(description
|
||||||
|
"GNU Dionysus is a convenient system for quickly retrieving the values of
|
||||||
|
mathematical constants used in science and engineering. Values can be
|
||||||
|
searched using a simple command-line tool, choosing from three databases:
|
||||||
|
universal constants, atomic numbers, and constants related to
|
||||||
|
semiconductors.")
|
||||||
|
(license license:gpl3+)
|
||||||
|
(home-page "http://www.gnu.org/software/dionysus/")))
|
||||||
|
|
||||||
(define-public gsl
|
(define-public gsl
|
||||||
(package
|
(package
|
||||||
(name "gsl")
|
(name "gsl")
|
||||||
|
|
Loading…
Reference in a new issue