me
/
guix
Archived
1
0
Fork 0

gnu: golang-web: Adjust module commentary.

Follow up <https://issues.guix.gnu.org/68835>.

* gnu/packages/golang-web.scm: Mention sections for library and
executable to reduce cross module inheritance.

Change-Id: I9775d5681b380063dc43e6bd38aa94cec4f0db81
master
Sharlatan Hellseher 2024-02-01 20:41:34 +00:00
parent df65af45b5
commit 560b4687e5
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 11 additions and 1 deletions

View File

@ -57,12 +57,18 @@
;;; Commentary: ;;; Commentary:
;;; ;;;
;;; Golang modules (libraries) related to HTML, CSS, SCSS, JavaScript, JSON, ;;; Golang modules (libraries) related to HTML, CSS, SCSS, JavaScript, JSON,
;;; Web-framework, REST-API or similar functionality. ;;; Web-framework, REST-API or similar functionality. They may provide
;;; executables and libraries, for which there are marked sections.
;;; ;;;
;;; Please: Try to add new module packages in alphabetic order. ;;; Please: Try to add new module packages in alphabetic order.
;;; ;;;
;;; Code: ;;; Code:
;;;
;;; Libraries:
;;;
(define-public go-cloud-google-com-go-compute-metadata (define-public go-cloud-google-com-go-compute-metadata
(package (package
(name "go-cloud-google-com-go-compute-metadata") (name "go-cloud-google-com-go-compute-metadata")
@ -1518,6 +1524,10 @@ Signing and Encryption set of standards. This includes support for JSON Web
Encryption, JSON Web Signature, and JSON Web Token standards.") Encryption, JSON Web Signature, and JSON Web Token standards.")
(license license:asl2.0))) (license license:asl2.0)))
;;;
;;; Executables:
;;;
(define-public go-minify (define-public go-minify
(package (package
(inherit go-github-com-tdewolff-minify-v2) (inherit go-github-com-tdewolff-minify-v2)