[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42380] [PATCH v4 3/9] gnu: Add go-github-com-dchest-siphash.
From: |
André Batista |
Subject: |
[bug#42380] [PATCH v4 3/9] gnu: Add go-github-com-dchest-siphash. |
Date: |
Thu, 3 Jun 2021 00:17:40 -0300 |
* gnu/packages/golang.scm (go-github-com-dchest-siphash): New variable.
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 2569d450b2..037163766d 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -7096,3 +7096,30 @@ is unmaintained. Newer software should use x-crypto
instead.")
;; License file is referred but it is missing. Probably because the
;; author decided to discontinue the project.
(license (license:non-copyleft "file://ed25519.go")))))
+
+(define-public go-github-com-dchest-siphash
+ (let ((commit "34f201214d993633bb24f418ba11736ab8b55aa7")
+ (revision "0"))
+ (package
+ (name "go-github-com-dchest-siphash")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dchest/siphash")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "08s076y7vmjqnq7jz0762hkm896r6r31v8b31a3gy0n8rfa01k8k"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/dchest/siphash"))
+ (home-page "https://github.com/dchest/siphash")
+ (synopsis "Go library for siphash")
+ (description "Go implementation of SipHash-2-4, a fast short-input
+Pseudo Random Function which is suitable for usage in message authentication
+codes and was based on the design created by Jean-Philippe Aumasson and Daniel
+J. Bernstein. ")
+ (license license:cc0))))
--
2.31.1
- [bug#42380] [PATCH v4 0/9] gnu: Add torbrowser-unbundle., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 1/9] gnu: Add go-torproject-org-ptlib., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 2/9] gnu: Add go-github-com-agl-ed25519., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 3/9] gnu: Add go-github-com-dchest-siphash.,
André Batista <=
- [bug#42380] [PATCH v4 5/9] gnu: Add go-github-com-dsnet-compress., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 4/9] gnu: Add go-github-com-dchest-uniuri., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 6/9] gnu: Add go-schwanenlied-me-yawning-bsaes., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 8/9] gnu: Add obfs4., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 7/9] gnu: Add go-gitlab-com-yawning-utls., André Batista, 2021/06/02
- [bug#42380] [PATCH v4 9/9] gnu: Add torbrowser-unbundle., André Batista, 2021/06/02