From bf77eab90ba24189a128fa4612ba8e79850b39b3 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Sat, 28 Jan 2023 15:42:54 +0800 Subject: [PATCH] rosenthal: Add go-github-com-go-playground-assert-v2. * rosenthal/packages/golang.scm (go-github-com-go-playground-assert-v2): New variable. --- rosenthal/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/rosenthal/packages/golang.scm b/rosenthal/packages/golang.scm index 94133ff..2d53b57 100644 --- a/rosenthal/packages/golang.scm +++ b/rosenthal/packages/golang.scm @@ -33,6 +33,29 @@ "This package provides a Server-Sent Events implementation in Go.") (license license:expat))) +(define-public go-github-com-go-playground-assert-v2 + (package + (name "go-github-com-go-playground-assert-v2") + (version "2.0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-playground/assert") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/go-playground/assert/v2")) + (home-page "https://github.com/go-playground/assert") + (synopsis "Basic assertion library used along side native Go testing") + (description + "This package provides a basic assertion library used along side native +Go testing, with building blocks for custom assertions.") + (license license:expat))) + (define-public go-github-com-google-gopacket (package (name "go-github-com-google-gopacket")