From 73860502348eba13f834057ae5c6262a5042f413 Mon Sep 17 00:00:00 2001 From: nixo Date: Sat, 12 Oct 2019 15:15:48 +0200 Subject: [PATCH] gnu: Add julia-abstracttrees. * gnu/packages/julia-xyz.scm (julia-abstracttrees-0.2.1): 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 9a92d5629a..0ca5cfa3f4 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2125,3 +2125,27 @@ TextParse as a framework for implementing parsers for other formats.") (description "This package provides load and save support for CSV Files under the @code{FileIO.jl} package.") (license license:expat))) + +(define-public julia-abstracttrees + (package + (name "julia-abstracttrees") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Keno/AbstractTrees.jl") + (commit (string-append "v" version)))) + (file-name "AbstractTrees") + (sha256 + (base32 "0w05zar1hlyqqx7zlzh05h78mjs9vsgaifn5z390crrhb1bgw4bj")))) + (propagated-inputs `(("julia-compat" ,julia-compat))) + (build-system julia-build-system) + (home-page "https://github.com/Keno/AbstractTrees.jl") + (synopsis "Abstract julia interfaces for working with trees") + (description "This package provides several utilities for working with +tree-like data structures. Most importantly, it defines the children method +that any package that contains such a datastructure may import and extend in +order to take advantage of any generic tree algorithm in this package (or +other packages compatible with this package).") + (license license:expat)))