gnu: Add julia-gumbo-jll.
* gnu/packages/julia-xyz.scm (julia-gumbo-jll): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
64c1c49787
commit
74a7bb81f9
1 changed files with 41 additions and 1 deletions
|
@ -24,7 +24,8 @@
|
||||||
#:use-module (guix build-system julia)
|
#:use-module (guix build-system julia)
|
||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages maths)
|
#:use-module (gnu packages maths)
|
||||||
#:use-module (gnu packages tls))
|
#:use-module (gnu packages tls)
|
||||||
|
#:use-module (gnu packages web))
|
||||||
|
|
||||||
(define-public julia-abstractffts
|
(define-public julia-abstractffts
|
||||||
(package
|
(package
|
||||||
|
@ -647,6 +648,45 @@ functions (or any callable object, really) using forward mode automatic
|
||||||
differentiation (AD).")
|
differentiation (AD).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-gumbo-jll
|
||||||
|
(package
|
||||||
|
(name "julia-gumbo-jll")
|
||||||
|
(version "0.10.1+1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaBinaryWrappers/Gumbo_jll.jl")
|
||||||
|
(commit (string-append "Gumbo-v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "00a182x5hfpjzyvrxdn8wh4h67q899p5dzqp19a5s22si4g41k76"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f ; no runtests
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'override-binary-path
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((gumbo (string-append (assoc-ref inputs "gumbo-parser"))))
|
||||||
|
(for-each
|
||||||
|
(lambda (wrapper)
|
||||||
|
(substitute* wrapper
|
||||||
|
(("(const libgumbo = )\"(.*)\"" all const libname)
|
||||||
|
(string-append const "\"" gumbo "/lib/" libname "\"\n"))
|
||||||
|
(("(global artifact_dir =).*" all m)
|
||||||
|
(string-append m " \"" gumbo "\""))))
|
||||||
|
;; There's a Julia file for each platform, override them all
|
||||||
|
(find-files "src/wrappers/" "\\.jl$"))))))))
|
||||||
|
(inputs
|
||||||
|
`(("gumbo-parser" ,gumbo-parser)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-jllwrappers" ,julia-jllwrappers)))
|
||||||
|
(home-page "https://github.com/JuliaBinaryWrappers/Gumbo_jll.jl")
|
||||||
|
(synopsis "Gumbo HTML parsing library wrappers")
|
||||||
|
(description "This package provides a wrapper for Gumbo HTML parsing library.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-http
|
(define-public julia-http
|
||||||
(package
|
(package
|
||||||
(name "julia-http")
|
(name "julia-http")
|
||||||
|
|
Reference in a new issue