From 8582ad38d348dae41be96b5c9ff9512748c6ee7b Mon Sep 17 00:00:00 2001 From: nixo Date: Mon, 24 Feb 2020 16:08:00 +0100 Subject: [PATCH 13/16] gnu: Add julia-orderedcollections. * gnu/packages/julia-xyz.scm (julia-orderedcollections): 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 046c365b08..797c61ce6f 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -218,6 +218,30 @@ arbitrary indices, similar to those found in some other programming languages like Fortran.") (license license:expat))) +(define-public julia-orderedcollections + (package + (name "julia-orderedcollections") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaCollections/OrderedCollections.jl") + ;; They added Package.toml after the 1.1.0 tag + (commit "7a789d72a40f4c446f59575f5d77a63df4391a24"))) + (file-name "OrderedCollections") + (sha256 + (base32 "09b3mlzkxcbc8wn0pji73591865li07q4kvvfzn9x4256mw47riq")))) + (build-system julia-build-system) + (home-page "https://github.com/JuliaCollections/OrderedCollections.jl") + (synopsis "Julia implementation of associative containers that preserve +insertion order") + (description "This package implements OrderedDicts and OrderedSets, which +are similar to containers in base Julia. However, during iteration the +Ordered* containers return items in the order in which they were added to the +collection.") + (license license:expat))) + (define-public julia-parsers (package (name "julia-parsers") -- 2.25.0