diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-31 10:57:03 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-31 11:58:55 +0100 |
| commit | eafbc302f197a66d40a9b15e719121d854cb1237 (patch) | |
| tree | 2eed7b9cabcc755f607e5e8ec605cf7cde58b75e /gnu | |
| parent | 347870ee1ab0ef0161f1bf16393534db8db5c9a1 (diff) | |
gnu: Add go-gopkg-in-tomb-v2.
* gnu/packages/golang-xyz.scm (go-gopkg-in-tomb-v2): New variable.
Change-Id: Ic3a762ea8e63fd28c4a6c5aad43d1224996506fe
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 126dbaad71..fb0f716617 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -29418,6 +29418,25 @@ decimal arithmetic.") termination.") (license license:bsd-3))) +(define-public go-gopkg-in-tomb-v2 + (package + (inherit go-gopkg-in-tomb-v1) + (name "go-gopkg-in-tomb-v2") + (version "2.0.0-20161208151619-d5d1b5820637") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-tomb/tomb") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sv15sri99szkdz1bkh0ir46w9n8prrwx5hfai13nrhkawfyfy10")))) + (build-system go-build-system) + (arguments + (substitute-keyword-arguments arguments + ((#:import-path _) "gopkg.in/tomb.v2"))))) + (define-public go-gopkg-in-validator-v2 (package (name "go-gopkg-in-validator-v2") |
