~ruther/guix-local

972e62e638e71d70d636e4a3bd2f5b754c04f6cf — Arthur Rodrigues 6 months ago 0523872
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>
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +27 -0
@@ 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")