me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-lzo-jll.

* gnu/packages/julia-jll.scm (julia-lzo-jll): New variable.
master
Efraim Flashner 2021-05-30 12:17:10 +03:00
parent 6e795958eb
commit f57a0f4992
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 38 additions and 0 deletions

View File

@ -1002,6 +1002,44 @@ from util-linux.")
"This package provides a wrapper for the libvorbis audio library.")
(license license:expat)))
(define-public julia-lzo-jll
(package
(name "julia-lzo-jll")
(version "2.10.1+0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaBinaryWrappers/LZO_jll.jl")
(commit (string-append "LZO-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1gy57znz3b6pk902vgdzlrwrxib0bcfl0zr1prinfbr9vfmiv1h0"))))
(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)
(map
(lambda (wrapper)
(substitute* wrapper
(("generate_wrapper_header.*")
(string-append
"generate_wrapper_header(\"LZO\", \""
(assoc-ref inputs "lzo") "\")\n"))))
;; There's a Julia file for each platform, override them all
(find-files "src/wrappers/" "\\.jl$")))))))
(inputs
`(("lzo" ,lzo)))
(propagated-inputs
`(("julia-jllwrappers" ,julia-jllwrappers)))
(home-page "https://github.com/JuliaBinaryWrappers/LZO_jll.jl")
(synopsis "LZO library wrappers")
(description "This package provides a wrapper for the lzo library.")
(license license:expat)))
(define-public julia-mbedtls-jll
(package
(name "julia-mbedtls-jll")