gnu: gsl: Move from module algebra to maths.
* gnu/packages/algebra.scm (gsl): Move variable from here... * gnu/packages/maths.scm (gsl): ...to here.
This commit is contained in:
		
							parent
							
								
									88840f0246
								
							
						
					
					
						commit
						88bd1804a2
					
				
					 2 changed files with 26 additions and 27 deletions
				
			
		| 
						 | 
					@ -78,32 +78,6 @@ solve the shortest vector problem.")
 | 
				
			||||||
   (license lgpl2.1+)
 | 
					   (license lgpl2.1+)
 | 
				
			||||||
   (home-page "http://perso.ens-lyon.fr/damien.stehle/fplll/")))
 | 
					   (home-page "http://perso.ens-lyon.fr/damien.stehle/fplll/")))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public gsl
 | 
					 | 
				
			||||||
  (package
 | 
					 | 
				
			||||||
    (name "gsl")
 | 
					 | 
				
			||||||
    (version "1.15")
 | 
					 | 
				
			||||||
    (source
 | 
					 | 
				
			||||||
     (origin
 | 
					 | 
				
			||||||
      (method url-fetch)
 | 
					 | 
				
			||||||
      (uri (string-append "mirror://gnu/gsl/gsl-"
 | 
					 | 
				
			||||||
                          version ".tar.gz"))
 | 
					 | 
				
			||||||
      (sha256
 | 
					 | 
				
			||||||
       (base32
 | 
					 | 
				
			||||||
        "18qf6jzz1r3mzb5qynywv4xx3z9g61hgkbpkdrhbgqh2g7jhgfc5"))))
 | 
					 | 
				
			||||||
    (build-system gnu-build-system)
 | 
					 | 
				
			||||||
    (home-page "http://www.gnu.org/software/gsl/")
 | 
					 | 
				
			||||||
    (synopsis "Numerical library for C and C++")
 | 
					 | 
				
			||||||
    (description
 | 
					 | 
				
			||||||
     "The GNU Scientific Library (GSL) is a numerical library for C
 | 
					 | 
				
			||||||
and C++ programmers.  It is free software under the GNU General
 | 
					 | 
				
			||||||
Public License.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
The library provides a wide range of mathematical routines such
 | 
					 | 
				
			||||||
as random number generators, special functions and least-squares
 | 
					 | 
				
			||||||
fitting.  There are over 1000 functions in total with an
 | 
					 | 
				
			||||||
extensive test suite.")
 | 
					 | 
				
			||||||
    (license gpl3+)))
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
(define-public pari-gp
 | 
					(define-public pari-gp
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
   (name "pari-gp")
 | 
					   (name "pari-gp")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,7 +23,6 @@
 | 
				
			||||||
  #:use-module (guix packages)
 | 
					  #:use-module (guix packages)
 | 
				
			||||||
  #:use-module (guix download)
 | 
					  #:use-module (guix download)
 | 
				
			||||||
  #:use-module (guix build-system gnu)
 | 
					  #:use-module (guix build-system gnu)
 | 
				
			||||||
  #:use-module (gnu packages algebra)
 | 
					 | 
				
			||||||
  #:use-module (gnu packages compression)
 | 
					  #:use-module (gnu packages compression)
 | 
				
			||||||
  #:use-module ((gnu packages gettext)
 | 
					  #:use-module ((gnu packages gettext)
 | 
				
			||||||
                #:renamer (symbol-prefix-proc 'gnu:))
 | 
					                #:renamer (symbol-prefix-proc 'gnu:))
 | 
				
			||||||
| 
						 | 
					@ -67,6 +66,32 @@ the standard data file.")
 | 
				
			||||||
   (license license:gpl3+)
 | 
					   (license license:gpl3+)
 | 
				
			||||||
   (home-page "http://www.gnu.org/software/units/")))
 | 
					   (home-page "http://www.gnu.org/software/units/")))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(define-public gsl
 | 
				
			||||||
 | 
					  (package
 | 
				
			||||||
 | 
					    (name "gsl")
 | 
				
			||||||
 | 
					    (version "1.15")
 | 
				
			||||||
 | 
					    (source
 | 
				
			||||||
 | 
					     (origin
 | 
				
			||||||
 | 
					      (method url-fetch)
 | 
				
			||||||
 | 
					      (uri (string-append "mirror://gnu/gsl/gsl-"
 | 
				
			||||||
 | 
					                          version ".tar.gz"))
 | 
				
			||||||
 | 
					      (sha256
 | 
				
			||||||
 | 
					       (base32
 | 
				
			||||||
 | 
					        "18qf6jzz1r3mzb5qynywv4xx3z9g61hgkbpkdrhbgqh2g7jhgfc5"))))
 | 
				
			||||||
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
 | 
					    (home-page "http://www.gnu.org/software/gsl/")
 | 
				
			||||||
 | 
					    (synopsis "Numerical library for C and C++")
 | 
				
			||||||
 | 
					    (description
 | 
				
			||||||
 | 
					     "The GNU Scientific Library (GSL) is a numerical library for C
 | 
				
			||||||
 | 
					and C++ programmers.  It is free software under the GNU General
 | 
				
			||||||
 | 
					Public License.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					The library provides a wide range of mathematical routines such
 | 
				
			||||||
 | 
					as random number generators, special functions and least-squares
 | 
				
			||||||
 | 
					fitting.  There are over 1000 functions in total with an
 | 
				
			||||||
 | 
					extensive test suite.")
 | 
				
			||||||
 | 
					    (license license:gpl3+)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public pspp
 | 
					(define-public pspp
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "pspp")
 | 
					    (name "pspp")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue