all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46686] [PATCH] gnu: add libucl
@ 2021-02-21  7:21 qblade via Guix-patches via
  2021-03-06 10:32 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: qblade via Guix-patches via @ 2021-02-21  7:21 UTC (permalink / raw)
  To: 46686

[-- Attachment #1: Type: text/plain, Size: 13 bytes --]

Empty Message

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-add-libucl.patch --]
[-- Type: text/x-patch; name=0001-gnu-add-libucl.patch, Size: 2628 bytes --]

From aae95593f1cfd48c50578bec83927c870afc6bce Mon Sep 17 00:00:00 2001
From: qblade <qblade@protonmail.com>
Date: Sun, 21 Feb 2021 06:48:18 +0000
Subject: [PATCH] gnu: add libucl

* gnu/packages/config-lang.scm (libucl): New variable.
---
 gnu/packages/config-lang.scm | 54 ++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
 create mode 100644 gnu/packages/config-lang.scm

diff --git a/gnu/packages/config-lang.scm b/gnu/packages/config-lang.scm
new file mode 100644
index 0000000000..8ef0b1cdb6
--- /dev/null
+++ b/gnu/packages/config-lang.scm
@@ -0,0 +1,54 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2021 qblade <qblade@protonmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages config-lang)
+  #:use-module (gnu packages)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (gnu packages autotools)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix git-download))
+
+(define-public libucl
+  (package
+    (name "libucl")
+    (version "0.8.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/vstakhov/libucl/")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1h52ldxankyhbbm1qbqz1f2q0j03c1b4mig7343bs3mc6fpm18gf"))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)
+       ("libtool" ,libtool)))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f)) ;; no tests
+    (home-page "https://github.com/vstakhov/libucl")
+    (synopsis "Universal configuration language")
+    (description "Universal configuration language.
+fully compatible with JSON format and is able to parse json files")
+    (license license:bsd-2)))
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-17 21:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-21  7:21 [bug#46686] [PATCH] gnu: add libucl qblade via Guix-patches via
2021-03-06 10:32 ` Ludovic Courtès
2021-03-07  3:08   ` [bug#46686] 回复: Re: bug#46686: " qblade via Guix-patches via
2021-03-17 21:24     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.