gnu: Add julia-bindeps.
* gnu/packages/julia-xyz.scm (julia-bindeps-0.8.10): New variable.
This commit is contained in:
parent
9212cd8f55
commit
d04052de46
|
@ -184,3 +184,26 @@ function takes in either an Array{UInt8}, a ByteString or an IO object.")
|
|||
(synopsis "Wrapper around the mbed TLS and cryptography C libary")
|
||||
(description "@code{julia-mbedtls} is a julia wrapper around mbed TLS.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-bindeps
|
||||
(package
|
||||
(name "julia-bindeps")
|
||||
(version "0.8.10")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaPackaging/BinDeps.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name "BinDeps")
|
||||
(sha256
|
||||
(base32 "1da7z4ii78gaqnjal7c4d1xvicyshiil4ls6xhi9id4q8plmfa2m"))))
|
||||
(propagated-inputs `(("julia-uriparser" ,julia-uriparser)
|
||||
("julia-sha" ,julia-sha)
|
||||
("julia-compat" ,julia-compat)))
|
||||
(build-system julia-build-system)
|
||||
(home-page "https://github.com/JuliaPackaging/BinDeps.jl")
|
||||
(synopsis "Easily build binary dependencies for Julia packages")
|
||||
(description "@code{BinDeps} is a package that provides a collection of
|
||||
tools to build binary dependencies for Julia packages.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in New Issue