mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 20:59:31 -05:00
gnu: Add go-github-com-jcmturner-aescts-v2.
* gnu/packages/golang.scm (go-github-com-jcmturner-aescts-v2): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
25ecc8342d
commit
aaa379aff9
1 changed files with 24 additions and 0 deletions
|
@ -1407,6 +1407,30 @@ (define-public go-github-com-jacobsa-reqtrace
|
||||||
"Package reqtrace contains a very simple request tracing framework.")
|
"Package reqtrace contains a very simple request tracing framework.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public go-github-com-jcmturner-aescts-v2
|
||||||
|
(package
|
||||||
|
(name "go-github-com-jcmturner-aescts-v2")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jcmturner/aescts")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0yrdiisdhcqfs8jpicc30dfmbqzxhkmbayn902xrgwkndky8w7l1"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/jcmturner/aescts/v2"))
|
||||||
|
(propagated-inputs (list go-github-com-stretchr-testify))
|
||||||
|
(home-page "https://github.com/jcmturner/aescts")
|
||||||
|
(synopsis "Encrypt and decrypt data in Go using AES CipherText Stealing")
|
||||||
|
(description
|
||||||
|
"This package provides AES Cipher Block Chaining CipherText Stealing
|
||||||
|
encryption and decryption methods.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-kataras-golog
|
(define-public go-github-com-kataras-golog
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-kataras-golog")
|
(name "go-github-com-kataras-golog")
|
||||||
|
|
Loading…
Reference in a new issue