gnu: Add julia-filepathsbase.

* gnu/packages/julia-xyz.scm (julia-filepathsbase): New variable.
This commit is contained in:
Efraim Flashner 2021-06-14 10:39:50 +03:00
parent a5daa8c0ab
commit 08ad8d69ed
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -974,6 +974,28 @@ (define-public julia-ffmpeg
@code{VideoIO.jl}.")
(license license:expat)))
(define-public julia-filepathsbase
(package
(name "julia-filepathsbase")
(version "0.9.10")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rofinn/FilePathsBase.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "136wm4ik6isrdanmpi4gdr1qw0qhr15i925qzjxbawk5hnyzwng9"))))
(build-system julia-build-system)
(arguments
`(#:tests? #f)) ; Cycle with JLSO.jl
(home-page "https://github.com/rofinn/FilePathsBase.jl")
(synopsis "Filesystem path types in Julia")
(description "@code{FilePathsBase.jl} provides a type based approach to
working with filesystem paths in Julia.")
(license license:expat)))
(define-public julia-fillarrays
(package
(name "julia-fillarrays")