diff options
author | Efraim Flashner | 2020-07-05 04:25:40 -0500 |
---|---|---|
committer | Efraim Flashner | 2020-07-05 04:25:40 -0500 |
commit | c0d632bcfbe7a057242dcffad26882a251757a6a (patch) | |
tree | 81919f6fe7016bd523e324446a204201bf4e48b6 /gn | |
parent | 0e1fe2432e10788a638bc201bdca2d356e1ad4a0 (diff) | |
download | guix-bioinformatics-c0d632bcfbe7a057242dcffad26882a251757a6a.tar.gz |
gn: gsl@1 available from guix-past
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/gemma.scm | 1 | ||||
-rw-r--r-- | gn/packages/statistics.scm | 28 |
2 files changed, 0 insertions, 29 deletions
diff --git a/gn/packages/gemma.scm b/gn/packages/gemma.scm index 9df4cf4..126abca 100644 --- a/gn/packages/gemma.scm +++ b/gn/packages/gemma.scm @@ -12,7 +12,6 @@ #:use-module (guix build-system ruby) #:use-module (guix build-system r) #:use-module (guix build-system trivial) - #:use-module (gn packages statistics) #:use-module (gnu packages autotools) #:use-module (gnu packages algebra) #:use-module (gnu packages base) diff --git a/gn/packages/statistics.scm b/gn/packages/statistics.scm index 9c619d7..e7895e2 100644 --- a/gn/packages/statistics.scm +++ b/gn/packages/statistics.scm @@ -4,7 +4,6 @@ #:use-module (guix utils) #:use-module (guix download) #:use-module (guix git-download) - #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system perl) #:use-module (guix build-system python) @@ -341,30 +340,3 @@ traits (CTL). The additional correlation information obtained can be combined with QTL information to perform de novo reconstruction of interaction networks.") (license license:gpl3))) - - -(define-public gsl1 ; supporting older GSL tests - no longer really used - (package - (name "gsl1") - (version "1.16") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/gsl/gsl-" - version ".tar.gz")) - (sha256 - (base32 - "0lrgipi0z6559jqh82yx8n4xgnxkhzj46v96dl77hahdp58jzg3k")) - )) - (build-system gnu-build-system) - (arguments - `( #:tests? #f - )) - (home-page "https://www.gnu.org/software/gsl/") - (synopsis "Numerical library for C and C++") - (description - "The GNU Scientific Library is a library for numerical analysis in C -and C++. It includes a wide range of mathematical routines, with over 1000 -functions in total. Subject areas covered by the library include: -differential equations, linear algebra, Fast Fourier Transforms and random -numbers.") - (license license:gpl3+))) |