From 68284dd1f74d4fc13e402fca69abe79df7753d95 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:09:38 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c851c78..c168946 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2041,3 +2041,37 @@ transformations, and locale-specific text handling.") "This subrepository holds the source for various packages and tools that support the Go programming language.") (license license:bsd-3))) +(define-public go-github-com-sirupsen-logrus-1.4.2 + (package + (name "go-github-com-sirupsen-logrus") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sirupsen/logrus") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "087k2lxrr9p9dh68yw71d05h5g9p5v26zbwd6j7lghinjfaw334x")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/sirupsen/logrus")) + (propagated-inputs + `(("go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894" + ,go-golang-org-x-sys-0.0.0-20190422165155-953cdadca894) + ("go-github-com-stretchr-testify-1.2.2" + ,go-github-com-stretchr-testify-1.2.2) + ("go-github-com-stretchr-objx-0.1.1" + ,go-github-com-stretchr-objx-0.1.1) + ("go-github-com-pmezard-go-difflib-1.0.0" + ,go-github-com-pmezard-go-difflib-1.0.0) + ("go-github-com-konsorten-go-windows-terminal-sequences-1.0.1" + ,go-github-com-konsorten-go-windows-terminal-sequences-1.0.1) + ("go-github-com-davecgh-go-spew-1.1.1" + ,go-github-com-davecgh-go-spew-1.1.1))) + (home-page "https://github.com/sirupsen/logrus") + (synopsis "Logrus") + (description + "Package logrus is a structured logger for Go, completely API compatible with the +standard library logger.") + (license license:expat)))