mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 16:17:27 +01:00
gnu: go-github-com-chmduquesne-rollinghash: Move to golang-crypto.
* gnu/packages/syncthing.scm (go-github-com-chmduquesne-rollinghash): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I61a942c07655f51a61e198613eeaa3eb240b8df9
This commit is contained in:
parent
2494d95ede
commit
f09654259f
2 changed files with 26 additions and 26 deletions
|
@ -1,8 +1,8 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2017-2020 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
||||||
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
|
@ -321,6 +321,31 @@ (define-public go-github-com-cespare-xxhash
|
||||||
xxHash algorithm (XXH64).")
|
xxHash algorithm (XXH64).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-chmduquesne-rollinghash
|
||||||
|
(let ((commit "a60f8e7142b536ea61bb5d84014171189eeaaa81")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-chmduquesne-rollinghash")
|
||||||
|
(version (git-version "4.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/chmduquesne/rollinghash")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0fpaqq4zb0wikgbhn7vwqqj1h865f5xy195vkhivsp922p7qwsjr"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/chmduquesne/rollinghash/"))
|
||||||
|
(home-page "https://github.com/chmduquesne/rollinghash")
|
||||||
|
(synopsis "Rolling hashes in Go")
|
||||||
|
(description
|
||||||
|
"This package provides a Go implementation of several rolling hashes.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public go-github-com-cloudflare-circl
|
(define-public go-github-com-cloudflare-circl
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-cloudflare-circl")
|
(name "go-github-com-cloudflare-circl")
|
||||||
|
|
|
@ -308,31 +308,6 @@ (define-public go-github-com-vitrun-qart
|
||||||
(home-page "https://github.com/vitrun/qart")
|
(home-page "https://github.com/vitrun/qart")
|
||||||
(license bsd-3))))
|
(license bsd-3))))
|
||||||
|
|
||||||
(define-public go-github-com-chmduquesne-rollinghash
|
|
||||||
(let ((commit "a60f8e7142b536ea61bb5d84014171189eeaaa81")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-chmduquesne-rollinghash")
|
|
||||||
(version (git-version "4.0.0" revision commit))
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/chmduquesne/rollinghash")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0fpaqq4zb0wikgbhn7vwqqj1h865f5xy195vkhivsp922p7qwsjr"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/chmduquesne/rollinghash/"))
|
|
||||||
(synopsis "Rolling hashes in Go")
|
|
||||||
(description "This package provides a Go implementation of several rolling
|
|
||||||
hashes.")
|
|
||||||
(home-page "https://github.com/chmduquesne/rollinghash")
|
|
||||||
(license expat))))
|
|
||||||
|
|
||||||
(define-public go-github-com-syncthing-notify
|
(define-public go-github-com-syncthing-notify
|
||||||
(let ((commit "69c7a957d3e261f9744f46b3dd4d608d8480ad90")
|
(let ((commit "69c7a957d3e261f9744f46b3dd4d608d8480ad90")
|
||||||
(revision "5"))
|
(revision "5"))
|
||||||
|
|
Loading…
Reference in a new issue