1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add go-github-com-rogpeppe-go-internal-1.14.

* gnu/packages/golang-xyz.scm (go-github-com-rogpeppe-go-internal-1.14): New variable.

Change-Id: Ic20ed9a5be257eb3fc704c0846568c7b9896159c
This commit is contained in:
Sharlatan Hellseher 2025-02-26 09:35:21 +00:00
parent 0c5cd02470
commit 722f591644
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -14080,6 +14080,28 @@ comments.
@end itemize")
(license license:bsd-3)))
;; Breaking chanes and requires go-1.23+
(define-public go-github-com-rogpeppe-go-internal-1.14
(package
(inherit go-github-com-rogpeppe-go-internal)
(name "go-github-com-rogpeppe-go-internal")
(version "1.14.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rogpeppe/go-internal")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "14g7rmpcd25vjc0cm9issdy7160zy4h6r1wmsdihimc341ff3p78"))))
(arguments
(list
#:skip-build? #t
#:go go-1.23
#:import-path "github.com/rogpeppe/go-internal"
#:test-flags #~(list "-skip" "TestSimple/cover")))))
(define-public go-github-com-rs-zerolog
(package
(name "go-github-com-rs-zerolog")