mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add julia-filepathsbase.
* gnu/packages/julia-xyz.scm (julia-filepathsbase): New variable.
This commit is contained in:
parent
a5daa8c0ab
commit
08ad8d69ed
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue