~ruther/guix-local

d7e59495acda3b555b4dca2161c81593880f731a — Lilah Tascheter 3 months ago bd123e6
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>
1 files changed, 24 insertions(+), 0 deletions(-)

M gnu/packages/password-utils.scm
M gnu/packages/password-utils.scm => gnu/packages/password-utils.scm +24 -0
@@ 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)))