diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-14 23:13:21 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-15 18:06:17 +0000 |
| commit | fafab702d69939fbb8570ce1f36c8e1336a97000 (patch) | |
| tree | 9fad02d39ab60dc3444e50b3903603097f715554 | |
| parent | 1acfb7d73572440d497ad1e77f3fde16406af94e (diff) | |
gnu: Add go-github-com-quasilyte-go-ruleguard-dsl.
* gnu/packages/golang-xyz.scm (go-github-com-quasilyte-go-ruleguard-dsl): New variable.
Change-Id: I0df5cca997d307c94b408d24889bb8123bc24a04
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b4b9e542bc2..394df256f79 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -20784,6 +20784,31 @@ without configuration, but if desired, everything can be customized down to the smallest detail.") (license license:expat))) +(define-public go-github-com-quasilyte-go-ruleguard-dsl + (package + (name "go-github-com-quasilyte-go-ruleguard-dsl") + (version "0.3.23") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/quasilyte/go-ruleguard") + (commit (go-version->git-ref version + #:subdir "dsl")))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a7wbc8ihy59g3zly9x1hnsawbzn1f8avyfm7njx17idmy9waz64")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/quasilyte/go-ruleguard/dsl" + #:unpack-path "github.com/quasilyte/go-ruleguard")) + (home-page "https://github.com/quasilyte/go-ruleguard") + (synopsis "DSL for custom linting rules in Go") + (description + "This package provdes DSL module for Go custom linting rules.") + (license license:bsd-3))) + ;; XXX: This repository was archived by the owner on Mar 18, 2019. It is ;; now read-only. (define-public go-github-com-racksec-srslog |
