gnu: Add julia-binaryprovider.

* gnu/packages/julia-xyz.scm (julia-binaryprovider-0.5.5): New variable.
master
nixo 2019-10-10 18:39:29 +02:00
parent 427fb8dabe
commit fc7236602a
1 changed files with 24 additions and 0 deletions

View File

@ -95,3 +95,27 @@ implementation")
(description "Julia package implementing SHA algorithms. Each exported
function takes in either an Array{UInt8}, a ByteString or an IO object.")
(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)))