me
/
guix
Archived
1
0
Fork 0

gnu: Add gsl-static.

* gnu/packages/maths.scm (gsl-static): New variable.
master
Efraim Flashner 2021-12-09 23:14:09 +02:00
parent 1e81140cb5
commit 1da7f9089f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 0 deletions

View File

@ -581,6 +581,15 @@ differential equations, linear algebra, Fast Fourier Transforms and random
numbers.") numbers.")
(license license:gpl3+))) (license license:gpl3+)))
;; TODO: Merge back into the gsl package as a separate output.
(define-public gsl-static
(package/inherit gsl
(name "gsl-static")
(arguments
`(,@(package-arguments gsl)
#:configure-flags (list "--disable-shared")
#:make-flags (list "CFLAGS=-fPIC")))))
(define-public sleef (define-public sleef
(package (package
(name "sleef") (name "sleef")