mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add julia-yaml.
* gnu/packages/julia-xyz.scm (julia-yaml): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
17406e2779
commit
4486b111d3
1 changed files with 25 additions and 0 deletions
|
@ -5341,6 +5341,31 @@ (define-public julia-woodburymatrices
|
||||||
inaccuracy in the result.")
|
inaccuracy in the result.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-yaml
|
||||||
|
(package
|
||||||
|
(name "julia-yaml")
|
||||||
|
(version "0.4.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaData/YAML.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "00k8456ffldbf75k2q5yxim7cgz3p0pbshsvmpm1331g8qy6liin"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
(list julia-stringencodings))
|
||||||
|
(native-inputs
|
||||||
|
(list julia-datastructures
|
||||||
|
julia-orderedcollections))
|
||||||
|
(home-page "https://github.com/JuliaData/YAML.jl")
|
||||||
|
(synopsis "Parses YAML documents into native Julia types")
|
||||||
|
(description "This package parses YAML documents into native Julia types
|
||||||
|
and dumps them back into YAML documents.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-zipfile
|
(define-public julia-zipfile
|
||||||
(package
|
(package
|
||||||
(name "julia-zipfile")
|
(name "julia-zipfile")
|
||||||
|
|
Loading…
Reference in a new issue