gnu: Add julia-uriparser.
* gnu/packages/julia-xyz.scm (julia-uriparser-0.4.0): New variable.
This commit is contained in:
parent
e956eda65d
commit
9212cd8f55
|
@ -23,6 +23,26 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (gnu packages tls))
|
#:use-module (gnu packages tls))
|
||||||
|
|
||||||
|
(define-public julia-uriparser
|
||||||
|
(package
|
||||||
|
(name "julia-uriparser")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaWeb/URIParser.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name "URIParser")
|
||||||
|
(sha256
|
||||||
|
(base32 "1i45wza6jh9k7x8jrqiil6k2yb81hdzm3s0zqhzy3y2sby66p44p"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/JuliaWeb/URIParser.jl")
|
||||||
|
(synopsis "Provides URI parsing according to RFC 3986")
|
||||||
|
(description "@code{URIParser} is a julia package that provides URI
|
||||||
|
parsing according to RFC 3986.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-inifile
|
(define-public julia-inifile
|
||||||
(package
|
(package
|
||||||
(name "julia-inifile")
|
(name "julia-inifile")
|
||||||
|
|
Loading…
Reference in New Issue