diff options
| author | Christopher Baines <mail@cbaines.net> | 2026-03-27 15:26:28 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 22:11:29 +0100 |
| commit | b6ced8cbabce931e90415e8f6a269a627be324ad (patch) | |
| tree | f6ea0a1c69dfba5c3203366399befaa32b77b65a /gnu | |
| parent | a349056e8210a7401b9319d6536ece492dede88c (diff) | |
gnu: Add go-github-com-benmcclelland-sgio.
* gnu/packages/golang-xyz.scm (go-github-com-benmcclelland-sgio): New
variable.
Change-Id: I3706afd47f23690a96db7f77c41d278058abf2f2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 292ae404a87..c29ca5f441e 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2875,6 +2875,31 @@ Unified Format}.") "The chardet package ports character set detection from ICU to Go.") (license license:expat))) +(define-public go-github-com-benmcclelland-sgio + (package + (name "go-github-com-benmcclelland-sgio") + (version "0.0.0-20250710154739-45e823ff1f46") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/benmcclelland/sgio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bkilgs6ikbgy31m0w2ixhv94mjcbicqnx8kl6mwddhb7qwznki8")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/benmcclelland/sgio" + #:test-flags #~(list "-vet=off"))) + (home-page "https://github.com/benmcclelland/sgio") + (synopsis "SCSI commands using SG_IO ioctl") + (description + "This package provides support for issuing SCSI commands with SG_IO +ioctl.") + (license license:expat))) + (define-public go-github-com-beorn7-perks (package (name "go-github-com-beorn7-perks") |
