From 182d6311c2bd3393115bac12da5154f8f33a9940 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Sun, 28 Sep 2014 01:29:56 +0200 Subject: gnu: Add dionysus. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/maths.scm (dionysus): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/maths.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index ebc34ccd87..e4fd13abf3 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2014 John Darrington ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2014 Federico Beffa +;;; Copyright © 2014 Mathieu Lirzin ;;; ;;; This file is part of GNU Guix. ;;; @@ -84,6 +85,29 @@ (define-public units (license license:gpl3+) (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 (package (name "gsl") -- cgit v1.2.3