diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index a20c7119a7..4cc50103b3 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -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)))