gnu: Add julia-http.

* gnu/packages/julia-xyz.scm (julia-http-0.8.6): New variable.
master
nixo 2019-10-10 22:52:37 +02:00
parent e7ea6b4b32
commit 475e4de299
1 changed files with 22 additions and 0 deletions

View File

@ -341,3 +341,25 @@ you expect,
(description "@code{CodecZlib} provides Zlib bindings for the
@code{TranscodingStreams} interface.")
(license license:expat)))
(define-public julia-http
(package
(name "julia-http")
(version "0.8.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaWeb/HTTP.jl")
(commit (string-append "v" version))))
(file-name "HTTP")
(sha256
(base32 "01s9nszgdinpa3pyra646w2yi4qx0d6hcngsrxx291vr5gnhr7lj"))))
(propagated-inputs `(("julia-inifile" ,julia-inifile)
("julia-mbedtls" ,julia-mbedtls)
("julia-compat" ,julia-compat)))
(build-system julia-build-system)
(home-page "https://juliaweb.github.io/HTTP.jl/")
(synopsis "HTTP for Julia")
(description "HTTP client and server functionality for Julia.")
(license license:expat)))