gnu: password-utils: Add himitsu-ssh.

* gnu/packages/password-utils.scm (himitsu-ssh): New variable.

Change-Id: I42c249478e8ecbcd66cd9571ee20213c723dc8f4
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Lilah Tascheter 2025-11-03 17:06:02 -06:00 committed by jgart
parent 3080c3b4bc
commit bd123e657d
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -2179,3 +2179,26 @@ cryptographic library, which has not been audited.")
(description "This package provides a GTK prompter for Himitsu, used to
request user consent for application access to stored secrets.")
(license license:gpl3))))
(define-public himitsu-ssh
(package
(name "himitsu-ssh")
(version "0.9.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://git.sr.ht/~sircmpwn/himitsu-ssh")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"07l152rdmp1sn9jvdvad0knkgh2pj77fia4ml9r4jj392gzv30vx"))))
(build-system hare-build-system)
(inputs (list himitsu hare-ssh))
(native-inputs (list scdoc))
(supported-systems %hare-supported-systems)
(home-page "https://git.sr.ht/~sircmpwn/himitsu-ssh")
(synopsis "Himitsu ssh-agent")
(description "This package provides an ssh-agent implementation that
stores and secures keys through Himitsu.")
(license license:gpl3)))