From ed6b22a658f2e0cd0e3597d0db70120f8721f33a Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 14:20:41 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 0c9b240..903ddd4 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2649,3 +2649,29 @@ debugging, to avoid wrapping long output lines in the terminal.") "This module (@url{https://pkg.go.dev/mod/github.com/golang/protobuf,(code github.com/golang/protobuf)}) contains Go bindings for protocol buffers.") (license license:bsd-3))) +(define-public go-github-com-go-logfmt-logfmt-0.4.0 + (package + (name "go-github-com-go-logfmt-logfmt") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-logfmt/logfmt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/go-logfmt/logfmt")) + (propagated-inputs + `(("go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515" + ,go-github-com-kr-logfmt-0.0.0-20140226030751-b84e30acd515))) + (home-page "https://github.com/go-logfmt/logfmt") + (synopsis "logfmt") + (description + "Package logfmt implements utilities to marshal and unmarshal data in the logfmt +format. The logfmt format records key/value pairs in a way that balances +readability for humans and simplicity of computer parsing. It is most commonly +used as a more human friendly alternative to JSON for structured logging.") + (license license:expat)))