1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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] <install-source?>: Skip it as it's a final command.
<test-flags>: 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
This commit is contained in:
Sharlatan Hellseher
2025-02-10 15:34:15 +00:00
parent 17e00cca81
commit 5e6f308311

View File

@@ -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")