gnu: Add julia-binaryprovider.
* gnu/packages/julia-xyz.scm (julia-binaryprovider-0.5.5): New variable.
This commit is contained in:
parent
427fb8dabe
commit
fc7236602a
|
@ -95,3 +95,27 @@ implementation")
|
||||||
(description "Julia package implementing SHA algorithms. Each exported
|
(description "Julia package implementing SHA algorithms. Each exported
|
||||||
function takes in either an Array{UInt8}, a ByteString or an IO object.")
|
function takes in either an Array{UInt8}, a ByteString or an IO object.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-binaryprovider
|
||||||
|
(package
|
||||||
|
(name "julia-binaryprovider")
|
||||||
|
(version "0.5.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaPackaging/BinaryProvider.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name "BinaryProvider")
|
||||||
|
(sha256
|
||||||
|
(base32 "1papsz5ki5iwv1v3ac1ddybjxak93nydh7dqc3231zm0fzd918ys"))))
|
||||||
|
(propagated-inputs `(("julia-sha" ,julia-sha)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
;; wants to download things with curl/wget
|
||||||
|
(modify-phases %standard-phases (delete 'precompile))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/JuliaPackaging/BinaryProvider.jl.git")
|
||||||
|
(synopsis "A reliable binary provider for Julia")
|
||||||
|
(description "Install binary packages with Julia.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue