summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Rodrigues <arthurhdrodrigues@proton.me>2025-10-26 00:21:41 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-09 09:10:03 +0000
commit972e62e638e71d70d636e4a3bd2f5b754c04f6cf (patch)
tree3d0e40c925b4dfd39b9b6cb437b20bc2d01e8a3e
parent0523872567da328ce57c2acb9895804e0373db38 (diff)
gnu: Add go-github-com-spdx-gordf.
* gnu/packages/golang-xyz.scm (go-github-com-spdx-gordf): New variable. Change-Id: I2436acf6bcc73c399ec269cc3c9689ad34ab2eb2 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2b63ca02f1a..68a22453c15 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -19879,6 +19879,33 @@ converting them to the @code{time.Duration} type.")
implementation.")
(license license:expat)))
+(define-public go-github-com-spdx-gordf
+ (package
+ (name "go-github-com-spdx-gordf")
+ (version "0.0.0-20250128162952-000978ccd6fb")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/spdx/gordf")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0almcq8p3sj0wbp3c276xdhva1imwnprvbd7klgfjnzlh11pllcw"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/spdx/gordf"
+ #:test-flags
+ #~(list "-vet=off"))) ;Go@1.24 forces vet, but tests are not ready yet.
+ (home-page "https://github.com/spdx/gordf")
+ (synopsis "RDF parser for Golang")
+ (description
+ "This package provides a parser for RDF files linearized using RDF/XML
+format. It is used to represent the RDF files in memory and write back in
+possibly different formats like JSON and XML.")
+ (license license:expat)))
+
(define-public go-github-com-spf13-afero
(package
(name "go-github-com-spf13-afero")