mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
563911266d
commit
21ab2b7fc6
1 changed files with 13 additions and 14 deletions
|
@ -6978,24 +6978,23 @@ or @code{LuaBind} but for Scheme.")
|
||||||
(name "guile-cbor")
|
(name "guile-cbor")
|
||||||
(version "0.1.0")
|
(version "0.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://codeberg.org/pukkamustard/guile-cbor/")
|
(url "https://codeberg.org/pukkamustard/guile-cbor/")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256 (base32 "0bdqg3ifayf7m2j09lqrgdfprbdaa67azf09bcq9b4k71inxfnxl"))))
|
(sha256
|
||||||
|
(base32 "0bdqg3ifayf7m2j09lqrgdfprbdaa67azf09bcq9b4k71inxfnxl"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments `())
|
(native-inputs (list autoconf automake pkg-config texinfo))
|
||||||
(native-inputs
|
|
||||||
(list autoconf automake pkg-config texinfo))
|
|
||||||
(inputs (list guile-3.0))
|
(inputs (list guile-3.0))
|
||||||
(synopsis "Guile implementation of CBOR")
|
(synopsis "Guile implementation of CBOR")
|
||||||
(description
|
(description
|
||||||
"The Concise Binary Object Representation (CBOR), as specified by RFC 8949, is
|
"The Concise Binary Object Representation (CBOR), as specified by RFC
|
||||||
a binary data serialization format. CBOR is similar to JSON but serializes to
|
8949, is a binary data serialization format. CBOR is similar to JSON but
|
||||||
binary which is smaller and faster to generate and parse. This package provides
|
serializes to binary which is smaller and faster to generate and parse. This
|
||||||
a Guile implementation of CBOR.")
|
package provides a Guile implementation of CBOR.")
|
||||||
(home-page "https://codeberg.org/pukkamustard/guile-cbor/")
|
(home-page "https://codeberg.org/pukkamustard/guile-cbor/")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue