diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-10 20:54:00 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:54 +0000 |
commit | 3763bf85ddaa8fbac35c45ce0186b685e06e9166 (patch) | |
tree | e165c621748373f7b91b53337d66fdc7b225d533 | |
parent | 40f61f474cf609244e8baa43536f241ae6c45255 (diff) |
gnu: go-github-com-ssor-bom: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-ssor-bom): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Ib334f3c5ee445489e8e4827b6e3e2c6795b6ffcf
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 23 |
2 files changed, 24 insertions, 23 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 415462633c..cf8d378704 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -13071,6 +13071,30 @@ GNU extensions} to the POSIX recommendations for command-line options.") all types of configuration needs and formats.") (license license:expat))) +(define-public go-github-com-ssor-bom + (package + (name "go-github-com-ssor-bom") + (version "0.0.0-20170718123548-6386211fdfcf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ssor/bom") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "09g5496ifwqxqclh2iw58plcwcz0sczlnxwqxzwmnl4shdl371ld")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/ssor/bom")) + (home-page "https://github.com/ssor/bom") + (synopsis "Cleaning BOMs in Go") + (description + "The bom package provides small tools for cleaning BOMs from a byte array +or reader.") + (license license:expat))) + (define-public go-github-com-stoewer-go-strcase (package (name "go-github-com-stoewer-go-strcase") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 2015261ca3..e64ef22b0a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3022,29 +3022,6 @@ using shell-style rules for quoting and commenting.") of the current user.") (license license:expat))) -(define-public go-github-com-ssor-bom - (package - (name "go-github-com-ssor-bom") - (version "0.0.0-20170718123548-6386211fdfcf") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ssor/bom") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "09g5496ifwqxqclh2iw58plcwcz0sczlnxwqxzwmnl4shdl371ld")))) - (build-system go-build-system) - (arguments - (list #:import-path "github.com/ssor/bom")) - (home-page "https://github.com/ssor/bom") - (synopsis "Cleaning BOMs in Go") - (description - "The bom package provides small tools for cleaning BOMs from a byte -array or reader.") - (license license:expat))) - ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |