backporting missing dependency for netbird native client (wip)

This commit is contained in:
Jean-François GUILLAUME 2024-11-11 10:38:55 +01:00
parent edd4baede6
commit 0b0165cade
GPG key ID: 38751DAE145EFB5A

View file

@ -112,3 +112,28 @@ Secure. NetBird enables secure remote access by applying granular access policie
(description "netbird client ui program. dirty version from github artifacts.") (description "netbird client ui program. dirty version from github artifacts.")
(home-page "https://github.com/netbirdio/netbird") (home-page "https://github.com/netbirdio/netbird")
(license license:expat))) (license license:expat)))
(define-public go-gopkg-in-natefinch-lumberjack.v2
(package
(name "go-gopkg-in-natefinch-lumberjack.v2")
(version "2.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/natefinch/lumberjack")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (base32 "1l3vlv72b7rfkpy1164kwd3qzrqmmjnb67akzxqp2mlvc66k6p3d"))))
(build-system go-build-system)
(arguments
(list
#:import-path "gopkg.in/natefinch/lumberjack.v2"))
(propagated-inputs
(list go-github-com-burntsushi-toml
go-gopkg-in-yaml-v2))
(home-page "https://github.com/natefinch/lumberjack")
(synopsis "Rolling logger for Go")
(description "Lumberjack is a Go package for writing logs to rolling files.")
(license license:expat)))