diff options
author | Katherine Cox-Buday <cox.katherine.e@gmail.com> | 2020-06-02 14:55:23 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-12 18:56:10 +0200 |
commit | 70a49ef76b3a72176b75c5d4d63e5324d3f9f767 (patch) | |
tree | d772837c5c326d74184b1adecccce53519fd369e /gnu/packages/c.scm | |
parent | 3bec7a356a3ac6659f8ecbc0f857c0fb69bc263a (diff) | |
download | guix-70a49ef76b3a72176b75c5d4d63e5324d3f9f767.tar.gz |
gnu: Add libestr.
* gnu/packages/c.scm (libestr): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/c.scm')
-rw-r--r-- | gnu/packages/c.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 3e227decc9..12a9b56c51 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2019 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> +;;; Copyright @ 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -339,3 +340,36 @@ address space pointers point to, or what locks a function acquires or releases.") (home-page "https://sparse.wiki.kernel.org/index.php/Main_Page") (license license:expat))) + +(define-public libestr + (package + (name "libestr") + (version "0.1.11") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rsyslog/libestr.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ca4rj90c0dn7kqpbcchkflxjw88a7rxcnwbr0gply4a28i01nd8")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; autogen.sh calls configure at the end of the script. + (replace 'bootstrap + (lambda _ (invoke "autoreconf" "-vfi")))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config) + ("libtool" ,libtool))) + (home-page "https://github.com/rsyslog/libestr") + (synopsis "Helper functions for handling strings") + (description + "This C library contains some essential string manipulation functions and +more, like escaping special characters.") + (license license:lgpl2.1+))) |