diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 24db3a6..0e0f956 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2886,3 +2886,26 @@ the operating system.") (description "This repository holds supplementary Go cryptography libraries.") (license license:bsd-3))) +(define-public go-gopkg-in-yaml-v3-3.0.0-20200605160147-a5ece683394c + (package + (name "go-gopkg-in-yaml-v3") + (version "3.0.0-20200605160147-a5ece683394c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v3") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03cm7c3p5fh0aa8vnxv5010dgqqr268ivb480ix1salxx3396w68")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v3" #:unpack-path "gopkg.in/yaml.v3")) + (propagated-inputs + `(("go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405" + ,go-gopkg-in-check-v1-0.0.0-20161208181325-20d25e280405))) + (home-page "https://gopkg.in/yaml.v3") + (synopsis "YAML support for the Go language") + (description "Package yaml implements YAML support for the Go language.") + (license unknown-license!)))