From 0312c897ffced7c2c87da0d46dce84bdb0529ca6 Mon Sep 17 00:00:00 2001 From: nixo Date: Sat, 12 Oct 2019 11:22:08 +0200 Subject: [PATCH] gnu: Add julia-showoff. * gnu/packages/julia-xyz.scm (julia-showoff-0.2.1): New variable. --- gnu/packages/julia-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 924664c7bd..f5e88c4336 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1533,4 +1533,25 @@ summary and display of types and data from external packages. With no extra dependencies and minimal code, package authors can describe visualization routines that can be used as components in more complex visualizations.") (license license:expat))) + +(define-public julia-showoff + (package + (name "julia-showoff") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaGraphics/Showoff.jl") + (commit "8502c2ec11f93c4f50c609ff4168aab31154b39d"))) + (file-name "Showoff") + (sha256 + (base32 "10iydva8vqlfv4i5jw31q9pc7877syd0bfz2djg93xdy90l4c617")))) + (propagated-inputs `(("julia-compat" ,julia-compat))) + (build-system julia-build-system) + (home-page "https://github.com/JuliaGraphics/Showoff.jl") + (synopsis "Nicely format an array of n things for tables and plots") + (description "Showoff provides an interface for consistently formatting an +array of n things, e.g. numbers, dates, unitful values.") + (license license:expat))) (license license:expat)))