diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-22 21:25:25 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-22 21:36:44 +0100 |
commit | a599ff7a484ca22506313fad9a0149cbab817c0c (patch) | |
tree | 7fa450e62f5991c6e1a75eb69b4e49495ec262da | |
parent | cdac3642fd8405ad3416b9aa49566bb301bd6a9a (diff) |
gnu: packages/golang-apps: Add module commentary.
* gnu/packages/golang-apps.scm: Comment on the purpose of this module.
Change-Id: Ia1353db23b23f2ac992f72c64dd9a139252d0107
-rw-r--r-- | gnu/packages/golang-apps.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/golang-apps.scm b/gnu/packages/golang-apps.scm index f837fe2eed..3337664be7 100644 --- a/gnu/packages/golang-apps.scm +++ b/gnu/packages/golang-apps.scm @@ -28,6 +28,19 @@ #:use-module (gnu packages golang-check) #:use-module (gnu packages golang-xyz)) +;;; Commentary: +;;; +;;; Golang (Go) specific applications which are not inherited from their +;;; source live here e.g linters, language servers, REPL implementations etc. +;;; +;;; If the <cmd/APP> is inherited from its source place it in corresponded +;;; golang-*.scm file in the end after the section "Executables". +;;; +;;; Please: Try to add new variable in alphabetical order. +;;; +;;; Code: + + (define-public godef (package (name "godef") |