diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-02-29 15:13:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-03-01 10:30:04 +0100 |
commit | b4464d384c7a7b500e611ec257cf092cdc47d977 (patch) | |
tree | 4d93695cc4221a57dcc76d15972186e26c4769fd | |
parent | e288f0075cde7c645e1f914737f5f2b3d439bcd2 (diff) | |
download | guix-b4464d384c7a7b500e611ec257cf092cdc47d977.tar guix-b4464d384c7a7b500e611ec257cf092cdc47d977.tar.gz |
gnu: Add gdsl.
* gnu/packages/datastructures.scm (gdsl): New variable.
-rw-r--r-- | gnu/packages/datastructures.scm | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm index 361490000a..74b9fff4af 100644 --- a/gnu/packages/datastructures.scm +++ b/gnu/packages/datastructures.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -23,6 +23,29 @@ #:use-module (guix download) #:use-module (guix build-system gnu)) +(define-public gdsl + (package + (name "gdsl") + (version "1.8") + (source (origin + (method url-fetch) + (uri (string-append "http://download.gna.org/gdsl/" + "gdsl-" version ".tar.gz")) + (sha256 + (base32 + "1v64jvlnj8jfpphphgjgb36p0kv50kwfyqncf0y12f16v8ydyiaw")))) + (build-system gnu-build-system) + (home-page "http://home.gna.org/gdsl/") + (synopsis "Generic data structures library") + (description "The Generic Data Structures Library (GDSL) is a collection +of routines for generic data structures manipulation. It is a re-entrant +library fully written from scratch in pure ANSI C. It is designed to offer +for C programmers common data structures with powerful algorithms, and hidden +implementation. Available structures are lists, queues, stacks, hash tables, +binary trees, binary search trees, red-black trees, 2D arrays, permutations +and heaps.") + (license license:gpl2+))) + (define-public sparsehash (package (name "sparsehash") |