[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51989] [PATCH 09/12] gnu: Add go-alecthomas-template
From: |
Collin J. Doering |
Subject: |
[bug#51989] [PATCH 09/12] gnu: Add go-alecthomas-template |
Date: |
Fri, 19 Nov 2021 18:21:24 -0500 |
User-agent: |
mu4e 1.6.10; emacs 27.2 |
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c8174372c4..3944ee71fe 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9066,3 +9066,30 @@ (define-public go-github-com-skratchdot-open-golang
(home-page "https://github.com/skratchdot/open-golang")
(license license:expat))))
+(define-public go-github-com-alecthomas-template
+ (let ((commit "a0175ee3bccc567396460bf5acd36800cb10c49c")
+ (revision "0"))
+ (package
+ (name "go-alecthomas-template")
+ (version "0.0.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alecthomas/template")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/alecthomas/template"
+ #:phases %standard-phases))
+ (synopsis "Fork of Go's text/template adding newline elision")
+ (description
+ "This is a fork of Go 1.4's text/template package with one addition: a
+backslash immediately after a closing delimiter will delete all subsequent
+newlines until a non-newline.")
+ (home-page "https://github.com/alecthomas/template")
+ (license license:bsd-3))))
+
--
2.33.1
--
Collin J. Doering
http://rekahsoft.ca
http://blog.rekahsoft.ca
http://git.rekahsoft.ca
- [bug#51989] [PATCH 00/12] Add aws-vault and missing dependent packages, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 01/12] gnu: Add go-keyring, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 02/12] gnu: Add go-androidnsfix, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 03/12] gnu: Add go-percent, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 04/12] gnu: Add go-aws-sdk-go, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 05/12] gnu: Add go-jose2go, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 06/12] gnu: Add go-libsecret, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 07/12] gnu: Add go-ini, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 08/12] gnu: Add go-open-golang, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 09/12] gnu: Add go-alecthomas-template,
Collin J. Doering <=
- [bug#51989] [PATCH 10/12] gnu: Add go-alecthomas-units, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 11/12] gnu: Add go-kingpin, Collin J. Doering, 2021/11/19
- [bug#51989] [PATCH 12/12] gnu: Add aws-vault, Collin J. Doering, 2021/11/19