From bee70a42d800195abf3695c4ea2289282d0cbabd Mon Sep 17 00:00:00 2001 From: nixo Date: Sat, 12 Oct 2019 11:06:46 +0200 Subject: [PATCH] gnu: Add julia-plotthemes. * gnu/packages/julia-xyz.scm (julia-plotthemes-0.4.0): New variable. --- gnu/packages/julia-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index bd59c7e926..bb22615a87 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1415,3 +1415,27 @@ applications") (description "This Julia package provides an interface to the GR visualization framework.") (license license:expat))) + +(define-public julia-plotthemes + (package + (name "julia-plotthemes") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaPlots/PlotThemes.jl") + (commit (string-append "v" version)))) + (file-name "PlotThemes") + (sha256 + (base32 "0q6s3bwds1k1xcryj0y33l6lw0bl9kj6ljd0ph7rii445b7a9sk4")))) + (propagated-inputs `(("julia-plotutils" ,julia-plotutils) + ("julia-requires" ,julia-requires))) + (build-system julia-build-system) + (home-page "https://github.com/JuliaPlots/PlotThemes.jl") + (synopsis "PlotThemes is a package to spice up the plots made with +@code{Plots.jl}") + (description "Custom plotting themes for @code{Plots.jl}, including both +light and dark themes.") + (license license:expat))) + (license license:expat)))