diff options
author | Eric Bavier <bavier@posteo.net> | 2023-05-07 23:27:18 -0500 |
---|---|---|
committer | Eric Bavier <bavier@posteo.net> | 2023-05-10 13:56:04 -0500 |
commit | 7e152870558e45f69fd7f40b9b5b10e12ac2162d (patch) | |
tree | e739605914bcbec990d0fce6982a51bece26573e /gnu/packages/logging.scm | |
parent | b7534e4b5df4113c3b6e09942b216db00bf7277b (diff) | |
download | guix-7e152870558e45f69fd7f40b9b5b10e12ac2162d.tar.gz |
gnu: kodi: Fix build with latest glibc.
* gnu/packages/kodi.scm (kodi)[inputs]: Use most recent 'fmt' and 'spdlog' packages. * gnu/packages/logging.scm (spdlog-for-kodi): Delete.
Diffstat (limited to 'gnu/packages/logging.scm')
-rw-r--r-- | gnu/packages/logging.scm | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index 550caf7be1..61b3d6ccc5 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -252,20 +252,6 @@ library.") (sha256 (base32 "02xz017ba9fssm1rp1fcfld7h79awbr6fqai9dxaqp02akp3davk")))))) -(define-public spdlog-for-kodi - (package - (inherit spdlog) - (version "1.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gabime/spdlog") - (commit (string-append "v" version)))) - (file-name (git-file-name "spdlog" version)) - (sha256 - (base32 "0dn44r3xbw1w0bk9yflnxkh3rzdq2bpxkks44skfmqig0rsj1f1x")))))) - (define-public rsyslog (package (name "rsyslog") |