mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: Add gsl-static.
* gnu/packages/maths.scm (gsl-static): New variable.
This commit is contained in:
parent
1e81140cb5
commit
1da7f9089f
1 changed files with 9 additions and 0 deletions
|
@ -581,6 +581,15 @@ (define-public gsl
|
||||||
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")
|
||||||
|
|
Loading…
Reference in a new issue