mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add go-github-com-bkaradzic-go-lz4.
* gnu/packages/syncthing.scm (go-github-com-bkaradzic-go-lz4): New variable.
This commit is contained in:
parent
56a37713c3
commit
67b468182a
1 changed files with 24 additions and 0 deletions
|
@ -46,3 +46,27 @@ (define-public go-github-com-audriusbutkevicius-go-nat-pmp
|
|||
firewall.")
|
||||
(home-page "https://github.com/AudriusButkevicius/go-nat-pmp")
|
||||
(license asl2.0))))
|
||||
|
||||
(define-public go-github-com-bkaradzic-go-lz4
|
||||
(let ((commit "7224d8d8f27ef618c0a95f1ae69dbb0488abc33a")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-bkaradzic-go-lz4")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/bkaradzic/go-lz4")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"10lmya17vdqg2pvqni0p73iahni48s1v11ya9a0hcz4jh5vw4dkb"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/bkaradzic/go-lz4"))
|
||||
(synopsis "LZ4 compression algorithm")
|
||||
(description "This package provides @code{go-lz4}, a Go implementation of
|
||||
the LZ4 compression algorithm.")
|
||||
(home-page "https://github.com/bkaradzic/go-lz4")
|
||||
(license bsd-2))))
|
||||
|
|
Loading…
Reference in a new issue