gnu: Add julia-parsers.
* gnu/packages/julia-xyz.scm (julia-parsers-0.3.7): New variable.
This commit is contained in:
parent
d04052de46
commit
661aa4a059
|
@ -207,3 +207,23 @@ function takes in either an Array{UInt8}, a ByteString or an IO object.")
|
||||||
(description "@code{BinDeps} is a package that provides a collection of
|
(description "@code{BinDeps} is a package that provides a collection of
|
||||||
tools to build binary dependencies for Julia packages.")
|
tools to build binary dependencies for Julia packages.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-parsers
|
||||||
|
(package
|
||||||
|
(name "julia-parsers")
|
||||||
|
(version "0.3.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaData/Parsers.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name "Parsers")
|
||||||
|
(sha256
|
||||||
|
(base32 "01j8cpnhxpxzybqzbvv3h5v0ksysqxmh5fmls6hpza2p3gjg4yrv"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/JuliaData/Parsers.jl")
|
||||||
|
(synopsis "Fast parsing machinery for basic types in Julia")
|
||||||
|
(description "@code{Parsers} is a collection of type parsers and utilities
|
||||||
|
for Julia")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue