>From e29caaaf651b750f8fcc734dab06921c81f4b226 Mon Sep 17 00:00:00 2001 From: nixo Date: Mon, 24 Feb 2020 16:09:38 +0100 Subject: [PATCH 15/16] gnu: Add julia-json. * gnu/packages/julia-xyz.scm (julia-json): New variable. --- gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index a4a9939894..5130663e48 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -185,6 +185,31 @@ decimal (radix) point.") allows to interface with @file{.ini} files.") (license license:expat))) +(define-public julia-json + (package + (name "julia-json") + (version "0.21.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaIO/JSON.jl") + (commit (string-append "v" version)))) + (file-name "JSON") + (sha256 + (base32 "0knmfjhchd3ggy86dsfyb7l4v3fv5dcr207cgp54mj7rj96caqsm")))) + (build-system julia-build-system) + (propagated-inputs `(("julia-parsers" ,julia-parsers))) + ;; For some reason, the precompile cache for this package is broken, + ;; meaning that it will get re-generated at `using' + (inputs `(("julia-offsetarrays" ,julia-offsetarrays) + ("julia-datastructures" ,julia-datastructures) + ("julia-fixedpointnumbers" ,julia-fixedpointnumbers))) + (home-page "https://github.com/JuliaIO/JSON.jl") + (synopsis "JSON parsing and printing in Julia") + (description "Parsing and printing JSON in pure Julia.") + (license license:expat))) + (define-public julia-mbedtls (package (name "julia-mbedtls") -- 2.25.0