all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Luis Higino <luishenriquegh2701@gmail.com>
To: 71023@debbugs.gnu.org
Cc: Luis Higino <luishenriquegh2701@gmail.com>
Subject: [bug#71023] [PATCH 9/9] gnu: go-github-com-junegunn-fzf: Update to 0.52.1.
Date: Sat, 18 May 2024 01:11:58 +0000	[thread overview]
Message-ID: <0129ec35793f67e954e29625c7bdc79dc02569ca.1715964816.git.luishenriquegh2701@gmail.com> (raw)
In-Reply-To: <cover.1715964816.git.luishenriquegh2701@gmail.com>

* gnu/packages/terminals.scm (go-github-com-junegunn-fzf): Update to 0.52.1.
* gnu/packages/terminals.scm: Update go versions.

Change-Id: Ib2bdec1cd31dd7f848edb938399a93b40599fb09
---
 gnu/packages/terminals.scm | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 1c1294f663..ea70a8b42d 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -40,6 +40,7 @@
 ;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
 ;;; Copyright © 2024 Suhail <suhail@bayesians.ca>
 ;;; Copyright © 2024 Clément Lassieur <clement@lassieur.org>
+;;; Copyright © 2024 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1003,7 +1004,9 @@ (define-public go-github.com-nsf-termbox-go
                   "0hdyisfaf8yb55h3p03p4sbq19546mp9fy28f2kn659mycmhxqk4"))))
       (build-system go-build-system)
       (arguments
-       '(#:import-path "github.com/nsf/termbox-go"))
+       (list
+        #:go go-1.18
+        #:import-path "github.com/nsf/termbox-go"))
       (propagated-inputs
        (list go-github-com-mattn-go-runewidth))
       (synopsis "@code{termbox} provides a minimal API for text-based user
@@ -1017,7 +1020,7 @@ (define-public go-github.com-nsf-termbox-go
 (define-public go-github-com-junegunn-fzf
   (package
     (name "go-github-com-junegunn-fzf")
-    (version "0.41.0")
+    (version "0.52.1")
     (source
      (origin
        (method git-fetch)
@@ -1027,12 +1030,16 @@ (define-public go-github-com-junegunn-fzf
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1l9nsvziip3azyvg8wi4g3x606fh6w9vpfcbcgjdzdnp2ywqciim"))))
+         "0jvn3wbjb22s3yfmaxvj6xx6gy8b3w25pv05bdd51aqaa2gwywkj"))))
     (build-system go-build-system)
     (arguments
-     `(#:import-path "github.com/junegunn/fzf"))
+     (list
+      #:go go-1.20
+      #:import-path "github.com/junegunn/fzf"))
     (inputs
      (list go-github-com-mattn-go-runewidth
+           go-github-com-charlievieth-fastwalk
+           go-github-com-gdamore-tcell
            go-github-com-mattn-go-shellwords
            go-github-com-mattn-go-isatty
            go-github-com-gdamore-tcell
-- 
2.41.0





  parent reply	other threads:[~2024-05-18  1:14 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-18  0:32 [bug#71023] [PATCH 0/9] Update fzf to 0.52.1 Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 1/9] gnu: Add go-github-com-charlievieth-fastwalk Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 2/9] gnu: aerc: Update go version Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 3/9] gnu: vale: " Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 4/9] gnu: senpai: " Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 5/9] gnu: chezmoi: " Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 6/9] gnu: games.scm: Update go versions Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 7/9] gnu: golang-xyz.scm: " Luis Higino
2024-05-18  1:11 ` [bug#71023] [PATCH 8/9] gnu: golang.scm: Update packages and " Luis Higino
2024-05-18  1:11 ` Luis Higino [this message]
2024-05-21 20:49 ` [bug#71023] [PATCH 0/9] Update fzf to 0.52.1 Sharlatan Hellseher
2024-06-04 17:00 ` Luis Henrique Gomes Higino
2024-06-10 10:14 ` [bug#71023] Groups Andreas Enge
2024-07-19 12:37 ` [bug#71023] [PATCH 0/9] Update fzf to 0.52.1 Mathieu
2024-08-11 21:13 ` Sharlatan Hellseher
2024-08-22 10:03 ` bug#71023: " Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0129ec35793f67e954e29625c7bdc79dc02569ca.1715964816.git.luishenriquegh2701@gmail.com \
    --to=luishenriquegh2701@gmail.com \
    --cc=71023@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.