diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-01 14:39:04 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:42 +0000 |
commit | e386ef9d4cf3d663e0a96dd6a5953f5483b6b2b3 (patch) | |
tree | 64f02b17f78cb097260d0af2f2c4a6b51d7b0a8a /gnu/packages/golang-check.scm | |
parent | 62701b6657aabf08afcaf7d28158e8f49d1d656a (diff) |
gnu: Add go-modernc-org-ccorpus2.
* gnu/packages/golang-check.scm (go-modernc-org-ccorpus2): New variable.
Change-Id: I5b39ac40d965aab779c30caebd1565414d2ca23d
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index d3e2ef5b10..d818a2b1f7 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -2249,6 +2249,29 @@ used to skip the test advanced Go linter.") (license license:expat))) +(define-public go-modernc-org-ccorpus2 + (package + (name "go-modernc-org-ccorpus2") + (version "1.5.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/cznic/ccorpus2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mwgi0jdj5a595wlllr5rn3gvl7cqz7fnjx28hn3ia9cs1nxkk0a")))) + (build-system go-build-system) + (arguments + (list + #:import-path "modernc.org/ccorpus2")) + (home-page "https://gitlab.com/cznic/ccorpus2") + (synopsis "Continuation of ccorpus using @code{embed.FS}") + (description + "This packge provides a test corpus of C code.") + (license license:bsd-3))) + (define-public go-pgregory-net-rapid (package (name "go-pgregory-net-rapid") |