diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-10 09:56:05 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-12-30 15:06:35 +0000 |
commit | 69e1aa218678d1932296cfdc6980e4bf71aee39b (patch) | |
tree | 7b8c69cbd942be77f565f2b2813b83521c2d17c2 /gnu/packages/julia-xyz.scm | |
parent | 6ac0c594287367ba0f168b915bd332cf9e9d46c7 (diff) |
gnu: Add julia-extents.
* gnu/packages/julia-xyz.scm (julia-extents): New variable.
Change-Id: Ia75a16fc1ba50c7e12eec74bcd5e3f8c9dc1d92e
Diffstat (limited to 'gnu/packages/julia-xyz.scm')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 8e9b4397c8..81315a91a5 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2254,6 +2254,29 @@ expressions during metaprogramming. This package aims to provide light-weight performant tooling without requiring additional package dependencies.") (license license:expat))) +(define-public julia-extents + (package + (name "julia-extents") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rafaqz/Extents.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l3f7fv13npd71rhjwb49j2f2aq3az6lyls85bbxxfh3pw51yr78")))) + (build-system julia-build-system) + (home-page "https://github.com/rafaqz/Extents.jl") + (synopsis "Shared Extent object for Julia spatial data") + (description + "Extents.jl is a small package that defines an @code{Extent} object that +can be used by the different Julia spatial data packages. @code{Extent} is a +wrapper for a NamedTuple of tuples holding the lower and upper bounds for each +dimension of a object.") + (license license:expat))) + (define-public julia-ffmpeg (package (name "julia-ffmpeg") |