diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 13:37:13 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 17:02:50 +0100 |
commit | bb611d3213c3d86c675b08fe26ecb6f918746f35 (patch) | |
tree | b075be32605f7a7c052c35d4fad5d808962ae91b /gnu/packages/golang.scm | |
parent | 93952ffbb7815eb270d47db6b87bbcc3a4a7e4ce (diff) | |
download | guix-bb611d3213c3d86c675b08fe26ecb6f918746f35.tar.gz guix-bb611d3213c3d86c675b08fe26ecb6f918746f35.zip |
gnu: go-gopkg-in-ini-v1: Move to golang-xyz.
* gnu/packages/golang.scm (go-gopkg-in-ini-v1): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Ie75a3d46253e28ba886db80f9c56407efa7c4675
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index fb8f488482..acb607e0dd 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4037,30 +4037,6 @@ which satisfies the cron expression.") (license (list license:gpl3+ license:asl2.0))))) -(define-public go-gopkg-in-ini-v1 - (package - (name "go-gopkg-in-ini-v1") - (version "1.67.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-ini/ini") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1vpzkjmrwp7bqqsijp61293kk2vn6lcck56j8m5y6ks6cf21lpap")))) - (build-system go-build-system) - (arguments - (list - #:import-path "gopkg.in/ini.v1")) - (native-inputs - (list go-github-com-stretchr-testify)) - (home-page "https://gopkg.in/ini.v1") - (synopsis "Go library for ini files") - (description "Go library for ini files") - (license license:asl2.0))) - (define-public go-gopkg-in-yaml-v3 (package (name "go-gopkg-in-yaml-v3") |