summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-crypto.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index e535c9205c3..5fbba90cc02 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -896,6 +896,32 @@ signing.")
896support encrypted container images.") 896support encrypted container images.")
897 (license license:asl2.0))) 897 (license license:asl2.0)))
898 898
899(define-public go-github-com-containerd-imgcrypt
900 (package
901 (inherit go-github-com-containerd-imgcrypt-v2)
902 (name "go-github-com-containerd-imgcrypt")
903 (version "1.1.11")
904 (source
905 (origin
906 (method git-fetch)
907 (uri (git-reference
908 (url "https://github.com/containerd/imgcrypt")
909 (commit (string-append "v" version))))
910 (file-name (git-file-name name version))
911 (sha256
912 (base32 "0vr82v8g45zjm2khkq66fffs4ykkwnc0cjv4ylc5xbgb3z4zm4y7"))))
913 (arguments
914 (list
915 #:tests? #f ;source only package
916 #:import-path "github.com/containerd/imgcrypt"))
917 (propagated-inputs
918 (list ;; go-github-com-containerd-containerd ;cycles
919 go-github-com-containerd-typeurl
920 go-github-com-containers-ocicrypt
921 go-github-com-gogo-protobuf
922 go-github-com-opencontainers-go-digest
923 go-github-com-opencontainers-image-spec))))
924
899(define-public go-github-com-containers-libtrust 925(define-public go-github-com-containers-libtrust
900 (package 926 (package
901 (name "go-github-com-containers-libtrust") 927 (name "go-github-com-containers-libtrust")