summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-07-18 11:06:12 +0200
committerEfraim Flashner <efraim@flashner.co.il>2025-08-06 14:49:18 +0300
commit21ab2b7fc6db2f571b19215dc7569af5cc4b350f (patch)
tree445451bc1a904d751bc5062f5fb5d374eb076ce1 /gnu/packages
parent563911266d91a2576244e9dc4356e315e612620c (diff)
gnu: guile-cbor: Improve style.
* gnu/packages/guile-xyz.scm (guile-cbor)[arguments]: Remove field. [source, native-inputs, description]: Reflow. Change-Id: Ide4a6069b530e3d88afe1c8a11db1c6a9b0418b2 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/guile-xyz.scm27
1 files changed, 13 insertions, 14 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index d9b3922acbd..f683115cb63 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -6978,24 +6978,23 @@ or @code{LuaBind} but for Scheme.")
6978 (name "guile-cbor") 6978 (name "guile-cbor")
6979 (version "0.1.0") 6979 (version "0.1.0")
6980 (source 6980 (source
6981 (origin 6981 (origin
6982 (method git-fetch) 6982 (method git-fetch)
6983 (uri (git-reference 6983 (uri (git-reference
6984 (url "https://codeberg.org/pukkamustard/guile-cbor/") 6984 (url "https://codeberg.org/pukkamustard/guile-cbor/")
6985 (commit (string-append "v" version)))) 6985 (commit (string-append "v" version))))
6986 (file-name (git-file-name name version)) 6986 (file-name (git-file-name name version))
6987 (sha256 (base32 "0bdqg3ifayf7m2j09lqrgdfprbdaa67azf09bcq9b4k71inxfnxl")))) 6987 (sha256
6988 (base32 "0bdqg3ifayf7m2j09lqrgdfprbdaa67azf09bcq9b4k71inxfnxl"))))
6988 (build-system gnu-build-system) 6989 (build-system gnu-build-system)
6989 (arguments `()) 6990 (native-inputs (list autoconf automake pkg-config texinfo))
6990 (native-inputs
6991 (list autoconf automake pkg-config texinfo))
6992 (inputs (list guile-3.0)) 6991 (inputs (list guile-3.0))
6993 (synopsis "Guile implementation of CBOR") 6992 (synopsis "Guile implementation of CBOR")
6994 (description 6993 (description
6995 "The Concise Binary Object Representation (CBOR), as specified by RFC 8949, is 6994 "The Concise Binary Object Representation (CBOR), as specified by RFC
6996a binary data serialization format. CBOR is similar to JSON but serializes to 69958949, is a binary data serialization format. CBOR is similar to JSON but
6997binary which is smaller and faster to generate and parse. This package provides 6996serializes to binary which is smaller and faster to generate and parse. This
6998a Guile implementation of CBOR.") 6997package provides a Guile implementation of CBOR.")
6999 (home-page "https://codeberg.org/pukkamustard/guile-cbor/") 6998 (home-page "https://codeberg.org/pukkamustard/guile-cbor/")
7000 (license license:gpl3+))) 6999 (license license:gpl3+)))
7001 7000