mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
backporting missing dependency for netbird native client (wip)
This commit is contained in:
parent
edd4baede6
commit
0b0165cade
1 changed files with 61 additions and 36 deletions
|
@ -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.")
|
||||
(home-page "https://github.com/netbirdio/netbird")
|
||||
(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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue