This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4aadcb3140 gnu: Add pinentry-fuzzel.
4aadcb3140 is described below

commit 4aadcb3140bcac6948a4b775f3805b5d13afdcfa
Author: Luis Guilherme Coelho <[email protected]>
AuthorDate: Sun Jan 25 14:14:14 2026 -0300

    gnu: Add pinentry-fuzzel.
    
    * gnu/packages/gnupg.scm (pinentry-fuzzel): New variable.
    
    Merges guix/guix!5912
    
    Change-Id: Iab9a60f54cdbe2daac0a71045608f428e58cab22
    Signed-off-by: Cayetano Santos <[email protected]>
    Modified-by: Cayetano Santos <[email protected]>
---
 gnu/packages/gnupg.scm | 35 ++++++++++++++++++++++++++++++++++-
 1 file changed, 34 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 3b0404ec66..caeecf8353 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -25,6 +25,7 @@
 ;;; Copyright © 2023, 2024 Janneke Nieuwenhuizen <[email protected]>
 ;;; Copyright © 2024 Zheng Junjie <[email protected]>
 ;;; Copyright © 2025 Antoine Côté <[email protected]>
+;;; Copyright © 2026 Luis Guilherme Coelho <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -78,7 +79,6 @@
   #:use-module (gnu packages tor)
   #:use-module (gnu packages web)
   #:use-module (gnu packages xorg)
-  #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages popt)
   #:use-module (gnu packages xdisorg)
@@ -87,6 +87,7 @@
   #:use-module (guix download)
   #:use-module (guix utils)
   #:use-module (guix git-download)
+  #:use-module (guix build-system copy)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system perl)
   #:use-module (guix build-system python)
@@ -1036,6 +1037,38 @@ with @code{rofi-pass} a good front end for 
@code{password-store}.")
      "This package provides a Pinentry implementation based on Bemenu.")
     (license license:gpl3+)))
 
+(define-public pinentry-fuzzel
+  (package
+    (name "pinentry-fuzzel")
+    (version "1.0.0")
+    (source
+     (origin
+      (method git-fetch)
+      (uri (git-reference
+            (url "https://github.com/JonasToth/pinentry-fuzzel";)
+            (commit (string-append "v" version))))
+      (file-name (git-file-name name version))
+      (sha256
+       (base32 "1ykmxckiy361rl4aj3bkyihx1639x61ic4995yxkqr9r4vc7zha1"))))
+    (build-system copy-build-system)
+    (arguments
+     (list #:install-plan
+           #~'(("pinentry-fuzzel" "bin/"))
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'patch-scripts
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   (substitute* "pinentry-fuzzel"
+                    (("fuzzel") (search-input-file inputs "bin/fuzzel"))))))))
+    (inputs
+     (list fuzzel))
+    (synopsis "Pinentry implementation based on @code{fuzzel}")
+    (description
+     "This package provides a very simple Pinentry implementation based
+on Fuzzel.")
+    (home-page "https://github.com/JonasToth/pinentry-fuzzel";)
+    (license license:gpl3)))
+
 (define-public pinentry
   (package (inherit pinentry-gtk2)
     (name "pinentry")))

Reply via email to