guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

22/33: gnu: Add julia-imageaxes.


From: guix-commits
Subject: 22/33: gnu: Add julia-imageaxes.
Date: Mon, 14 Jun 2021 07:46:23 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 57860112ce3bb53cff1854f40b7e13875f242551
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 12:53:40 2021 +0300

    gnu: Add julia-imageaxes.
    
    * gnu/packages/julia-xyz.scm (julia-imageaxes): New variable.
---
 gnu/packages/julia-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 3302c5a..e7fc415 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1601,6 +1601,34 @@ just starting at 1).")
 conditional ifelse.  It is similar to @code{Core.ifelse} but it is 
extendable.")
     (license license:expat)))
 
+(define-public julia-imageaxes
+  (package
+    (name "julia-imageaxes")
+    (version "0.6.9")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaImages/ImageAxes.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "15zqxani1jjh8849s7rdps6b6prqdwv8yxx893y536vkpk7i07qd"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-axisarrays" ,julia-axisarrays)
+       ("julia-imagecore" ,julia-imagecore)
+       ("julia-reexport" ,julia-reexport)
+       ("julia-simpletraits" ,julia-simpletraits)))
+    (native-inputs
+     `(("julia-unitful" ,julia-unitful)))
+    (home-page "https://github.com/JuliaImages/ImageAxes.jl";)
+    (synopsis "Julia package for giving \"meaning\" to the axes of an image")
+    (description "This small package supports the representation of images as
+@code{AxisArrays} to endow the axes with \"meaning,\" and makes programming 
with
+such arrays easy via traits.")
+    (license license:expat)))
+
 (define-public julia-imagecore
   (package
     (name "julia-imagecore")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]