diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-30 12:51:40 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-30 12:55:57 +0300 |
commit | ab942d5c3a1a3cafc8132f1743a9c294c47f18f7 (patch) | |
tree | fead9f02e8f8b843c6fcd873fb783de9357dce36 | |
parent | 0e7925f79cf6072a2f78187af1c2169e052a69f7 (diff) | |
download | guix-ab942d5c3a1a3cafc8132f1743a9c294c47f18f7.tar guix-ab942d5c3a1a3cafc8132f1743a9c294c47f18f7.tar.gz |
gnu: Add julia-plotthemes.
* gnu/packages/julia-xyz.scm (julia-plotthemes): New variable.
-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 60e518e251..b5f09c0751 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1201,6 +1201,29 @@ algorithms, while ensuring that the most efficient implementation is used in actual computation.") (license license:expat))) +(define-public julia-plotthemes + (package + (name "julia-plotthemes") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaPlots/PlotThemes.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fd27w9z1vhz0d1bzrs5vcavpb5r5jviyh27d9c4ka37phz4xvmh")))) + (build-system julia-build-system) + (propagated-inputs + `(("julia-plotutils" ,julia-plotutils) + ("julia-requires" ,julia-requires))) + (home-page "https://github.com/JuliaPlots/PlotThemes.jl") + (synopsis "Themes for the Julia plotting package Plots.jl") + (description + "PlotThemes is a package to spice up the plots made with @code{Plots.jl}.") + (license license:expat))) + (define-public julia-plotutils (package (name "julia-plotutils") |