diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-12 17:12:23 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-26 19:55:46 +0200 |
commit | a802f733b8dac0ebdb272472e00602c3ae0700df (patch) | |
tree | 9db809d6a18e7095bf390025cd27d8f793e790d4 | |
parent | 5c68eefe91df1b7d0bcc74fa5d65cb60438623d8 (diff) |
gnu: Add go-github-com-makenowjust-heredoc-v2.
* gnu/packages/golang-xyz.scm (go-github-com-makenowjust-heredoc-v2): New variable.
Change-Id: Ic0173bc01ef076d3addb5050d8f18c863b455211
-rw-r--r-- | gnu/packages/golang-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 79fa0220f0..60b8f7a48b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12682,6 +12682,24 @@ generation.") raw strings.") (license license:expat))) +(define-public go-github-com-makenowjust-heredoc-v2 + (package + (inherit go-github-com-makenowjust-heredoc) + (name "go-github-com-makenowjust-heredoc-v2") + (version "2.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/makenowjust/heredoc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k4ggh0dkz3919m7gy2avhj0drjxrcvm01a5dgsc3z971yk6h5xw")))) + (arguments + (list + #:import-path "github.com/MakeNowJust/heredoc/v2")))) + (define-public go-github-com-marcinbor85-gohex ;; No release, see <https://github.com/marcinbor85/gohex/issues/5>. (let ((commit "baab2527a9a2a4abb3dc06baabedfa5e0268b8d8") |