diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2026-01-05 16:59:27 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 21:34:01 +0100 |
| commit | da6e6057b1440488cf65c992c6dbc5b5b3cc70aa (patch) | |
| tree | f1983ce949ff3848c608ec215cd2d979ebc01401 | |
| parent | e8a07603b076229431c7faf51f926a8cb41d4815 (diff) | |
gnu: Add go-github-com-denis-tingaikin-go-header.
* gnu/packages/golang-check.scm
(go-github-com-denis-tingaikin-go-header): New variable.
Relates-to: https://codeberg.org/guix/guix/pulls/5417
Change-Id: If815370375877142a387c995a78f4217e7113f2a
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-check.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 6c573fa304..f2ac26dcf4 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -725,6 +725,34 @@ style). @end itemize") (license license:isc))) +(define-public go-github-com-denis-tingaikin-go-header + (package + (name "go-github-com-denis-tingaikin-go-header") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/denis-tingaikin/go-header") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qzy2ps59dzsdn4ny8x48k9d1kscpddjilkxra1w16npsvix6mcm")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/denis-tingaikin/go-header")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-golang-org-x-tools + go-gopkg-in-yaml-v3)) + (home-page "https://github.com/denis-tingaikin/go-header") + (synopsis "Go linter for copyright headers") + (description + "Simple Go source code linter providing checks for copyright headers.") + (license license:gpl3))) + (define-public go-github-com-dgryski-go-ddmin (package (name "go-github-com-dgryski-go-ddmin") |
