diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7428accb4c..90c2d02345 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -27,7 +27,6 @@ ;;; Copyright © 2021 Ricardo Wurmus ;;; Copyright © 2021 Sarah Morgensen ;;; Copyright © 2021 Stefan Reichör -;;; Copyright © 2021 raingloom ;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher ;;; Copyright © 2022 (unmatched-parenthesis ;;; Copyright © 2022 Dhruvin Gandhi @@ -4893,6 +4892,30 @@ execution.") "The chardet package ports character set detection from ICU to Go.") (license license:expat))) +(define-public go-github-com-gologme-log + (package + (name "go-github-com-gologme-log") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gologme/log") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m7dszaisviq7fgwyxg9lwhxyzdab0w7d1zbilrnarzvyx9wh3ax")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/gologme/log")) + (home-page "https://github.com/gologme/log/") + (synopsis "Fork of the golang built in log package to add support for levels") + (description + "This package is a drop in replacement for the built-in Go log package. +All the functionality of the built-in package still exists and is unchanged. +This package contains a series of small enhancements and additions.") + (license license:bsd-3))) + (define-public go-github-com-google-gnostic-models (package (name "go-github-com-google-gnostic-models") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index b029dda839..cb0ad587ed 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4733,32 +4733,6 @@ losing type information. The primary intended use is for implementing configuration languages, but other uses may be possible too.") (license license:expat))) -(define-public go-github-com-gologme-log - (package - (name "go-github-com-gologme-log") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gologme/log") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0m7dszaisviq7fgwyxg9lwhxyzdab0w7d1zbilrnarzvyx9wh3ax")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/gologme/log")) - (home-page "https://github.com/gologme/log/") - (synopsis - "Fork of the golang built in log package to add support for levels") - (description "This package is a drop in replacement for the built-in Go -log package. All the functionality of the built-in package still exists and -is unchanged. This package contains a series of small enhancements and -additions.") - (license license:bsd-3))) - (define-public go-github-com-kardianos-minwinsvc (package (name "go-github-com-kardianos-minwinsvc")