summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-03-20 19:34:08 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-20 21:33:19 +0100
commitcd7eaa61e47b3333a63cd638c602297e627ad62f (patch)
tree5bfe2d5ec5ad12d6006fff2bc4b3e87ef576ffe4 /gnu
parent0ab495f52f93164d53f62fa12c64a28f74bd92d9 (diff)
gnu: hdt-cpp: Fix build by updating to 1.3.3-0.88110cc.
* gnu/packages/rdf.scm (hdt-cpp): Update to 1.3.3-0.88110cc. Change-Id: I224facd96d22a6b6569ce466f91c31630702d24d Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/rdf.scm25
1 files changed, 15 insertions, 10 deletions
diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm
index c46394e8c17..5f58845b26b 100644
--- a/gnu/packages/rdf.scm
+++ b/gnu/packages/rdf.scm
@@ -445,16 +445,21 @@ powerful language for representing information.")
(define-public hdt-cpp
(package
(name "hdt-cpp")
- (version "1.3.3")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/rdfhdt/hdt-cpp")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z"))))
+ ;; 1.3.3 is from 2019 and does not compile on gcc 14.
+ (properties '((commit . "88110cc24d4d7d07080b40325d1905fae999ef95")
+ (revision . "0")))
+ (version (git-version "1.3.3"
+ (assoc-ref properties 'revision)
+ (assoc-ref properties 'commit)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rdfhdt/hdt-cpp")
+ (commit (assoc-ref properties 'commit))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19n37zpnwa1k5vq1ajw5ahhvcmc8x5m6q4c737k04kpzlnk248ra"))))
(build-system gnu-build-system)
(inputs
(list serd zlib))