guix-commits
[Top][All Lists]
Advanced

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

12/33: gnu: Add julia-recipespipeline.


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

efraim pushed a commit to branch master
in repository guix.

commit ab7d4e851debba4db66a54294475b1a60185d265
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 11:43:52 2021 +0300

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index dd847a3..e31b2d4 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2545,6 +2545,37 @@ possible to describe visualization routines that can be 
used as components in
 more complex visualizations.")
     (license license:expat)))
 
+(define-public julia-recipespipeline
+  (package
+    (name "julia-recipespipeline")
+    (version "0.3.2")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaPlots/RecipesPipeline.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0wa342m2d9k4kihr6g9i0wpbsipp0n11kh9jmlw4pc5msmz4rxr0"))))
+    (build-system julia-build-system)
+    (arguments
+     `(#:tests? #f))    ; Cycle with Plots.jl.
+    (propagated-inputs
+     `(("julia-nanmath" ,julia-nanmath)
+       ("julia-plotutils" ,julia-plotutils)
+       ("julia-recipesbase" ,julia-recipesbase)))
+    (home-page "http://juliaplots.org/RecipesPipeline.jl/dev/";)
+    (synopsis "Utilities for processing recipes")
+    (description "This package was factored out of @code{Plots.jl} to allow any
+other plotting package to use the recipe pipeline.  In short, the extremely
+lightweight @code{RecipesBase.jl} package can be depended on by any package to
+define \"recipes\": plot specifications of user-defined types, as well as 
custom
+plot types.  @code{RecipePipeline.jl} contains the machinery to translate these
+recipes to full specifications for a plot.")
+    (license license:expat)))
+
 (define-public julia-reexport
   (package
     (name "julia-reexport")



reply via email to

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