gnu: Add julia-uriparser.

* gnu/packages/julia-xyz.scm (julia-uriparser-0.4.0): New variable.
master
nixo 2019-10-10 21:08:24 +02:00
parent e956eda65d
commit 9212cd8f55
1 changed files with 20 additions and 0 deletions

View File

@ -23,6 +23,26 @@
#:use-module (guix packages)
#: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
(package
(name "julia-inifile")