mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 14:18:38 +02:00
49 lines
1.8 KiB
Scheme
49 lines
1.8 KiB
Scheme
(define-module (glicid packages golang)
|
|
#:use-module (guix build-system go)
|
|
#:use-module (guix download)
|
|
#:use-module (guix git-download)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
)
|
|
|
|
(define-public go-github-com-moby-sys-0.0.0-20220308220145-03355939d693
|
|
(package
|
|
(name "go-github-com-moby-sys")
|
|
(version "0.0.0-20220308220145-03355939d693")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/moby/sys")
|
|
(commit (go-version->git-ref version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "1ns4bav4n0k93nwz898dmcrz9zm4fa08sxyzhi7wqj4f8mpz4fam"))))
|
|
(build-system go-build-system)
|
|
(arguments '(#:import-path "github.com/moby/sys"))
|
|
(home-page "https://github.com/moby/sys")
|
|
(synopsis #f)
|
|
(description #f)
|
|
(license license:asl2.0)))
|
|
(define-public go-github-com-yvasiyarov-gorelic-0.0.6
|
|
(package
|
|
(name "go-github-com-yvasiyarov-gorelic")
|
|
(version "0.0.6")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/yvasiyarov/gorelic")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "0210d8z7l945611b5ynzjhnypqfdyr490ndrap13s4k5z1jgqjnb"))))
|
|
(build-system go-build-system)
|
|
(arguments '(#:import-path "github.com/yvasiyarov/gorelic"))
|
|
(home-page "https://github.com/yvasiyarov/gorelic")
|
|
(synopsis "GoRelic is deprecated in favour of")
|
|
(description
|
|
"Package gorelic is an New Relic agent implementation for Go runtime. It collect
|
|
a lot of metrics about Go scheduler, garbage collector and memory allocator and
|
|
send them to NewRelic.")
|
|
(license license:bsd-2)))
|