From 88aed2b242a4936c4663d8af5db87728318c1bee Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Fri, 25 Mar 2022 11:12:08 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/golang.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index c168946..2225833 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2075,3 +2075,22 @@ the Go programming language.") "Package logrus is a structured logger for Go, completely API compatible with the standard library logger.") (license license:expat))) +(define-public go-github-com-gorilla-mux-1.7.4 + (package + (name "go-github-com-gorilla-mux") + (version "1.7.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gorilla/mux") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d0sy1paa055ic84sp3766s9pa24q008hf77dc842vrgvn8p3wmh")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/gorilla/mux")) + (home-page "https://github.com/gorilla/mux") + (synopsis "gorilla/mux") + (description "Package mux implements a request router and dispatcher.") + (license license:bsd-3)))