[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: Add go-github-com-tetratelabs-wabin.
From: |
guix-commits |
Subject: |
02/08: gnu: Add go-github-com-tetratelabs-wabin. |
Date: |
Tue, 10 Dec 2024 18:20:05 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit ddc6e6d1e77e852170cc02aa5d2fbba947c7479d
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue Dec 10 21:56:11 2024 +0000
gnu: Add go-github-com-tetratelabs-wabin.
* gnu/packages/golang-web.scm (go-github-com-tetratelabs-wabin): New
variable.
Change-Id: I9f0d88de247d6f1843c00019d02f578e09147c93
---
gnu/packages/golang-web.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 17d346c4f9..6e1235de43 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5834,6 +5834,41 @@ an interface to implement any other minifier.")
"This package contains several lexers and parsers written in Go.")
(license license:expat)))
+(define-public go-github-com-tetratelabs-wabin
+ (package
+ (name "go-github-com-tetratelabs-wabin")
+ (version "0.0.0-20230304001439-f6f874872834")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tetratelabs/wabin")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "195bh4n2ba3rbgzcb1h7zi93dr0k38qxhg8m0laa0z41vl9i0igm"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/tetratelabs/wabin"
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX: Replace when go-build-system supports nested path.
+ (delete 'build)
+ (replace 'check
+ (lambda* (#:key import-path tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion (string-append "src/" import-path)
+ (invoke "go" "test" "-v" "./..."))))))))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (home-page "https://github.com/tetratelabs/wabin")
+ (synopsis "WebAssembly Binary Format in Go")
+ (description
+ "This package provides @code{WebAssembly} a @code{WebAssembly} data model
+and binary encoder.")
+ (license license:asl2.0)))
+
(define-public go-github-com-tv42-httpunix
(let ((commit "2ba4b9c3382c77e7b9ea89d00746e6111d142a22")
(revision "0"))
- branch go-team updated (6f0c1a439b -> cde0ff4112), guix-commits, 2024/12/10
- 03/08: gnu: Add protoc-gen-go., guix-commits, 2024/12/10
- 01/08: gnu: Add go-software-sslmate-com-src-go-pkcs12n., guix-commits, 2024/12/10
- 04/08: gnu: Add go-github-com-iancoleman-strcase., guix-commits, 2024/12/10
- 05/08: gnu: Add go-github-com-tetratelabs-wazero., guix-commits, 2024/12/10
- 08/08: gnu: Add go-github-com-antihax-optional., guix-commits, 2024/12/10
- 07/08: gnu: kubo: Undundle more packages., guix-commits, 2024/12/10
- 06/08: gnu: Add go-github-com-ceramicnetwork-go-dag-jose., guix-commits, 2024/12/10
- 02/08: gnu: Add go-github-com-tetratelabs-wabin.,
guix-commits <=