gnu: password-utils: Add himitsu-git.

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

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

View file

@ -2202,3 +2202,27 @@ request user consent for application access to stored secrets.")
(description "This package provides an ssh-agent implementation that
stores and secures keys through Himitsu.")
(license license:gpl3)))
(define-public himitsu-git
(package
(name "himitsu-git")
(version "0.9.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://git.sr.ht/~sircmpwn/himitsu-git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"09ww866k4ns9cpyqm9vixlyadwk3q8y24pxhqs0zxc3i4i3168yz"))))
(build-system hare-build-system)
(arguments (list #:tests? #f)) ; no tests
(inputs (list himitsu))
(native-inputs (list scdoc))
(supported-systems %hare-supported-systems)
(home-page "https://git.sr.ht/~sircmpwn/himitsu-git")
(synopsis "Himitsu git credential helper")
(description "This package provides a git credential helper that queries
Himitsu for credentials.")
(license license:gpl3)))