From 5e6f30831105557cc9fc0bf131e35e3c0e9d8e34 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 10 Feb 2025 15:34:15 +0000 Subject: [PATCH] gnu: ssh-to-pgp: Update to 1.1.4. * gnu/packages/crypto.scm: Remove (gnu packages golang), and add (gnu packages golang-crypto). (ssh-to-pgp): Update to 1.1.4. [arguments] : Skip it as it's a final command. : Skip one test. [propagated-inputs]: Remove go-golang-org-x-sys and go-golang-org-x-crypto. [native-inputs]: Add go-github-com-protonmail-go-crypto and go-golang-org-x-crypto. Change-Id: Ic2ff0189d97069d01ecd2e72dc524b3e190691e6 --- gnu/packages/crypto.scm | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 4e853780c5..15c55b4e4f 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -62,7 +62,7 @@ #:use-module (gnu packages documentation) #:use-module (gnu packages gettext) #:use-module (gnu packages gnupg) - #:use-module (gnu packages golang) + #:use-module (gnu packages golang-crypto) #:use-module (gnu packages golang-build) #:use-module (gnu packages graphviz) #:use-module (gnu packages image) @@ -1664,7 +1664,7 @@ SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt, and descrypt.") (define-public ssh-to-pgp (package (name "ssh-to-pgp") - (version "1.1.2") + (version "1.1.4") (source (origin (method git-fetch) @@ -1673,14 +1673,17 @@ SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt, and descrypt.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1mph8mm80qzrsd07v7drfrhdah9n9ibsqfcf9kbffi1pw83cm0aa")))) + (base32 "1xaj6pnk5y2flnxm57j9bpdpll9vhg1rbjj4v3a7hn1gginxpprx")))) (build-system go-build-system) (arguments - '(#:import-path "github.com/Mic92/ssh-to-pgp")) + (list + #:install-source? #f + #:import-path "github.com/Mic92/ssh-to-pgp" + ;; failed: No secret key + #:test-flags #~(list "-skip" "TestCli"))) (native-inputs - (list gnupg)) - (propagated-inputs - (list go-golang-org-x-sys + (list gnupg + go-github-com-protonmail-go-crypto go-golang-org-x-crypto)) (home-page "https://github.com/Mic92/ssh-to-pgp") (synopsis "Convert SSH RSA keys to GPG keys")