mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: go-github-com-golang-groupcache: Move to golang-web.
* gnu/packages/syncthing.scm (go-github-com-golang-groupcache): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I3e5393d13630529a0cf309e08b9e7dc9d5cba18a
This commit is contained in:
parent
1cfaa79e6d
commit
191e5674d9
2 changed files with 30 additions and 29 deletions
|
@ -1,4 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2017, 2019, 2021 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
||||
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
||||
|
@ -10,7 +11,6 @@
|
|||
;;; Copyright © 2020 raingloom <raingloom@riseup.net>
|
||||
;;; Copyright © 2020-2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
||||
;;; Copyright © 2021 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2021 Philip McGrath <philip@philipmcgrath.com>
|
||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||
|
@ -708,6 +708,35 @@ (define-public go-github-com-goccy-go-json
|
|||
"Fast JSON encoder/decoder compatible with encoding/json for Go.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-golang-groupcache
|
||||
(let ((commit "869f871628b6baa9cfbc11732cdf6546b17c1298")
|
||||
(revision "2"))
|
||||
(package
|
||||
(name "go-github-com-golang-groupcache")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/golang/groupcache")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:import-path "github.com/golang/groupcache"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-golang-protobuf-proto))
|
||||
(home-page "https://github.com/golang/groupcache")
|
||||
(synopsis "Groupcache is a caching and cache-filling library")
|
||||
(description
|
||||
"Groupcache is a caching and cache-filling library, intended
|
||||
as a replacement for memcached in many cases. It provides a data loading
|
||||
mechanism with caching and de-duplication that works across a set of peer
|
||||
processes.")
|
||||
(license license:asl2.0))))
|
||||
|
||||
(define-public go-github-com-google-go-github
|
||||
(package
|
||||
(name "go-github-com-google-go-github")
|
||||
|
|
|
@ -353,34 +353,6 @@ (define-public go-github-com-d4l3k-messagediff
|
|||
(home-page "https://github.com/d4l3k/messagediff")
|
||||
(license expat)))
|
||||
|
||||
(define-public go-github-com-golang-groupcache
|
||||
(let ((commit "869f871628b6baa9cfbc11732cdf6546b17c1298")
|
||||
(revision "2"))
|
||||
(package
|
||||
(name "go-github-com-golang-groupcache")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/golang/groupcache")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/golang/groupcache"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-golang-protobuf-proto))
|
||||
(synopsis "Groupcache is a caching and cache-filling library")
|
||||
(description "Groupcache is a caching and cache-filling library, intended
|
||||
as a replacement for memcached in many cases. It provides a data loading
|
||||
mechanism with caching and de-duplication that works across a set of peer
|
||||
processes.")
|
||||
(home-page "https://github.com/golang/groupcache")
|
||||
(license asl2.0))))
|
||||
|
||||
(define-public go-github-com-jackpal-gateway
|
||||
(package
|
||||
(name "go-github-com-jackpal-gateway")
|
||||
|
|
Loading…
Reference in a new issue