1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

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>
This commit is contained in:
Hugo Buddelmeijer
2026-03-20 19:34:08 +01:00
committed by Andreas Enge
parent 0ab495f52f
commit cd7eaa61e4

View File

@@ -445,16 +445,21 @@ powerful language for representing information.")
(define-public hdt-cpp (define-public hdt-cpp
(package (package
(name "hdt-cpp") (name "hdt-cpp")
(version "1.3.3") ;; 1.3.3 is from 2019 and does not compile on gcc 14.
(source (origin (properties '((commit . "88110cc24d4d7d07080b40325d1905fae999ef95")
(method git-fetch) (revision . "0")))
(uri (git-reference (version (git-version "1.3.3"
(url "https://github.com/rdfhdt/hdt-cpp") (assoc-ref properties 'revision)
(commit (string-append "v" version)))) (assoc-ref properties 'commit)))
(file-name (git-file-name name version)) (source
(sha256 (origin
(base32 (method git-fetch)
"1vsq80jnix6cy78ayag7v8ajyw7h8dqyad1q6xkf2hzz3skvr34z")))) (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) (build-system gnu-build-system)
(inputs (inputs
(list serd zlib)) (list serd zlib))