mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-andybalholm-brotli: Move to golang-compression.
* gnu/packages/golang.scm (go-github-com-andybalholm-brotli): Move from here ... * gnu/packages/golang-compression.scm: ... to here. Change-Id: I820b0211b1fe4d90643e82fc32a99d8e8b6a9b0f
This commit is contained in:
parent
d8f69addc2
commit
8af7c33818
2 changed files with 27 additions and 26 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2022 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -33,6 +34,32 @@
|
||||||
;;;
|
;;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
(define-public go-github-com-andybalholm-brotli
|
||||||
|
(package
|
||||||
|
(name "go-github-com-andybalholm-brotli")
|
||||||
|
(version "1.0.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/andybalholm/brotli")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1zvmj7gbnkq9xwv1bvcxk9acxl06y902148qwbd2kqwgs52wy2c0"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "github.com/andybalholm/brotli"))
|
||||||
|
(home-page "https://github.com/andybalholm/brotli")
|
||||||
|
(synopsis "Pure Go Brotli encoder and decoder")
|
||||||
|
(description
|
||||||
|
"This package is a brotli compressor and decompressor implemented in Go.
|
||||||
|
It was translated from the reference implementation
|
||||||
|
(@url{https://github.com/google/brotli,https://github.com/google/brotli}) with
|
||||||
|
the @code{c2go} tool at
|
||||||
|
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-golang-snappy
|
(define-public go-github-com-golang-snappy
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-golang-snappy")
|
(name "go-github-com-golang-snappy")
|
||||||
|
|
|
@ -3722,32 +3722,6 @@ information about the resource usage and performance characteristics of running
|
||||||
containers.")
|
containers.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-github-com-andybalholm-brotli
|
|
||||||
(package
|
|
||||||
(name "go-github-com-andybalholm-brotli")
|
|
||||||
(version "1.0.4")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/andybalholm/brotli")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "1zvmj7gbnkq9xwv1bvcxk9acxl06y902148qwbd2kqwgs52wy2c0"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "github.com/andybalholm/brotli"))
|
|
||||||
(home-page "https://github.com/andybalholm/brotli")
|
|
||||||
(synopsis "Pure Go Brotli encoder and decoder")
|
|
||||||
(description
|
|
||||||
"This package is a brotli compressor and decompressor implemented in Go.
|
|
||||||
It was translated from the reference implementation
|
|
||||||
(@url{https://github.com/google/brotli,https://github.com/google/brotli}) with
|
|
||||||
the @code{c2go} tool at
|
|
||||||
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-jonboulle-clockwork
|
(define-public go-github-com-jonboulle-clockwork
|
||||||
(let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
|
(let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue