diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-07 15:31:52 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:43 +0000 |
commit | 5fb69f5f7ec57bf6f63384f7411378f1789d394c (patch) | |
tree | 2b8a3d91aa8e7add63465203a35d149b581df990 | |
parent | 8d5d6882fd2ad422eee9844dbc3d100180a5ba6c (diff) |
gnu: Remove go-github-com-cheekybits-genny.
Not in use by any packages in Guix, looks like abandoned, see
<https://github.com/cheekybits/genny/issues/79>.
* gnu/packages/golang.scm (go-github-com-cheekybits-genny): Delete variable.
Change-Id: I19c3ab8c3fc1381efa9c125de55aa2fc179938a8
-rw-r--r-- | gnu/packages/golang.scm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 3a1e528c90..10bb22f4fe 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3026,32 +3026,6 @@ over strings.") "The terminfo package implements terminfo database reading for Go.") (license license:expat))) -(define-public go-github-com-cheekybits-genny - (package - (name "go-github-com-cheekybits-genny") - (version "1.0.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/cheekybits/genny") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1pcir5ic86713aqa51581rfb67rgc3m0c72ddjfcp3yakv9vyq87")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/cheekybits/genny")) - (propagated-inputs - (list go-golang-org-x-tools)) - (native-inputs - (list go-github-com-stretchr-testify)) - (synopsis "Generics for Go") - (description "This package provides @code{genny}, a Go language -implementation of generics.") - (home-page "https://github.com/cheekybits/genny/") - (license license:expat))) - (define-public go-github-com-lunixbochs-vtclean (package (name "go-github-com-lunixbochs-vtclean") |