gnu: Add julia-parsers.

* gnu/packages/julia-xyz.scm (julia-parsers-0.3.7): New variable.
master
nixo 2019-10-10 21:14:53 +02:00
parent d04052de46
commit 661aa4a059
1 changed files with 20 additions and 0 deletions

View File

@ -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
tools to build binary dependencies for Julia packages.")
(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)))