mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: ocaml-gsl: Update to 1.24.0.
* gnu/packages/ocaml.scm (ocaml-gsl): Update to 1.24.0.
This commit is contained in:
parent
8d135e3726
commit
8fd897888d
1 changed files with 15 additions and 3 deletions
|
@ -4791,7 +4791,7 @@ (define-public ocaml-merlin
|
||||||
(define-public ocaml-gsl
|
(define-public ocaml-gsl
|
||||||
(package
|
(package
|
||||||
(name "ocaml-gsl")
|
(name "ocaml-gsl")
|
||||||
(version "1.22.0")
|
(version "1.24.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -4801,10 +4801,22 @@ (define-public ocaml-gsl
|
||||||
version "/gsl-" version ".tbz"))
|
version "/gsl-" version ".tbz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17vcswipliq1b2idbzx1z95kskn1a4q4s5v04igilg0f7lnkaarb"))))
|
"1l5zkkkg8sglsihrbf10ivq9s8xzl1y6ag89i4jqpnmi4m43fy34"))))
|
||||||
(build-system ocaml-build-system)
|
(build-system dune-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:test-target "."
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-gsl-directory
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(substitute* "src/config/discover.ml"
|
||||||
|
(("/usr") (assoc-ref inputs "gsl")))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gsl" ,gsl)))
|
`(("gsl" ,gsl)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ocaml-base" ,ocaml-base)
|
||||||
|
("ocaml-stdio" ,ocaml-stdio)))
|
||||||
(home-page "https://mmottl.github.io/gsl-ocaml")
|
(home-page "https://mmottl.github.io/gsl-ocaml")
|
||||||
(synopsis "Bindings to the GNU Scientific Library")
|
(synopsis "Bindings to the GNU Scientific Library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue