diff options
author | Aaron Covrig <aaron.covrig.us@ieee.org> | 2024-10-12 18:53:15 -0400 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-10-14 21:48:39 +0800 |
commit | d1d2759ae15d08f041344d229aac8bf7770c4002 (patch) | |
tree | c848afc92c20802ed5f15720340bd721deb264af | |
parent | 178d407c42e60c013d78b7b8ec45def4b25f3230 (diff) | |
download | guix-d1d2759ae15d08f041344d229aac8bf7770c4002.tar guix-d1d2759ae15d08f041344d229aac8bf7770c4002.tar.gz |
gnu: libfastjson: Update to 1.2304.0
* gnu/packages/c.scm (libfastjson): Update to 1.2304.0
-rw-r--r-- | gnu/packages/c.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index ce573f451e..7204c63e03 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -818,7 +818,7 @@ more, like escaping special characters.") (define-public libfastjson (package (name "libfastjson") - (version "0.99.9") + (version "1.2304.0") (source (origin (method git-fetch) @@ -827,10 +827,9 @@ more, like escaping special characters.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "12rqcdqxazw8czzxbivdapdgj19pcswpw1jp2915sxbljis83g6q")))) + (base32 "0gmyzplnb4cfbg4yai0s8yi13xbaq606d5h50zwlkky712aklwss")))) (build-system gnu-build-system) - (native-inputs - (list autoconf automake libtool)) + (native-inputs (list autoconf automake libtool)) (home-page "https://github.com/rsyslog/libfastjson") (synopsis "Fast JSON library for C") (description |