From 972e62e638e71d70d636e4a3bd2f5b754c04f6cf Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Sun, 26 Oct 2025 00:21:41 +0000 Subject: [PATCH] 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 --- gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 2b63ca02f1a3173805c3a394839afa102163e210..68a22453c15f1b3626234d717cb39289ceb73b0d 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")