[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/14: gnu: Add libfyaml.
From: |
guix-commits |
Subject: |
13/14: gnu: Add libfyaml. |
Date: |
Wed, 3 May 2023 07:25:41 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 9b9883c7730606a616f63e1a4a35b9735be5e9f6
Author: Alexey Abramov <levenson@mmer.org>
AuthorDate: Sat Apr 15 08:13:31 2023 +0200
gnu: Add libfyaml.
* gnu/packages/serialization.scm (libfyaml): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/serialization.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index df9e8fd7a9..39954d6764 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -12,6 +12,7 @@
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2023 Alexey Abramov <levenson@mmer.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -436,6 +437,33 @@ in which the loaded data is arranged in memory.")
(home-page "https://github.com/tlsa/libcyaml")
(license license:isc)))
+(define-public libfyaml
+ (package
+ (name "libfyaml")
+ (version "0.8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pantoniou/libfyaml")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "002g0grddfi5y42lq06zj8266rf7h27wq76sr598ad5pxllx3y3g"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ (list autoconf
+ automake
+ libtool
+ pkg-config))
+ (home-page "https://github.com/pantoniou/libfyaml")
+ (synopsis "YAML version 1.2 and JSON parser and writer")
+ (description "Libfyaml is a YAML parser and emitter, supporting the latest
+YAML spec and passing the full YAML testsuite. It is designed to be very
+efficient, avoiding copies of data, and has no artificial limits like the 1024
+character limit for implicit keys.")
+ (license license:expat)))
+
(define-public yaml-cpp
(package
(name "yaml-cpp")
- 01/14: gnu: emacs-tldr: Include unzip dependency., (continued)
- 01/14: gnu: emacs-tldr: Include unzip dependency., guix-commits, 2023/05/03
- 03/14: gnu: emacs-tldr: Improve package style., guix-commits, 2023/05/03
- 04/14: gnu: emacs-eglot: Update to 1.15., guix-commits, 2023/05/03
- 05/14: gnu: emacs-tramp: Update to 2.6.0.4., guix-commits, 2023/05/03
- 12/14: gnu: rrdtool: Update to 1.8.0., guix-commits, 2023/05/03
- 02/14: gnu: emacs-tldr: Update to 0-2.1b09d20., guix-commits, 2023/05/03
- 08/14: gnu: emacs-ivy-rich: Update to 0.1.7., guix-commits, 2023/05/03
- 10/14: gnu: open-adventure: Update to 1.16., guix-commits, 2023/05/03
- 06/14: gnu: emacs-org: Update to 9.6.5., guix-commits, 2023/05/03
- 11/14: gnu: Add emacs-riscv-mode., guix-commits, 2023/05/03
- 13/14: gnu: Add libfyaml.,
guix-commits <=
- 07/14: gnu: emacs-inspector: Update to 0.29., guix-commits, 2023/05/03
- 09/14: gnu: emacs-osm: Update to 0.12., guix-commits, 2023/05/03
- 14/14: gnu: Add sipp., guix-commits, 2023/05/03