all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andrew Tropin <andrew@trop.in>
To: Tanguy Le Carrour <tanguy@bioneland.org>, 54090@debbugs.gnu.org
Cc: maximedevos@telenet.be, ludo@gnu.org,
	Tanguy Le Carrour <tanguy@bioneland.org>,
	mail@nicolasgoaziou.fr
Subject: [bug#54090] [PATCH v3] gnu: Add tessen.
Date: Fri, 25 Mar 2022 18:10:25 +0300	[thread overview]
Message-ID: <87y20y2hlq.fsf@trop.in> (raw)
In-Reply-To: <20220311075412.17869-1-tanguy@bioneland.org>

[-- Attachment #1: Type: text/plain, Size: 3251 bytes --]

On 2022-03-11 08:54, Tanguy Le Carrour wrote:

> * gnu/packages/password-utils.scm (tessen): New variable.
> ---
>  gnu/packages/password-utils.scm | 38 ++++++++++++++++++++++++++++++++-
>  1 file changed, 37 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
> index 440bb927a6..0e5f63e1be 100644
> --- a/gnu/packages/password-utils.scm
> +++ b/gnu/packages/password-utils.scm
> @@ -23,7 +23,7 @@
>  ;;; Copyright © 2018 Amirouche Boubekki <amirouche@hypermove.net>
>  ;;; Copyright © 2018, 2019, 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
>  ;;; Copyright © 2019 Jens Mølgaard <jens@zete.tk>
> -;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
> +;;; Copyright © 2019,2022 Tanguy Le Carrour <tanguy@bioneland.org>
>  ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
>  ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
>  ;;; Copyright © 2020 Jean-Baptiste Note <jean-baptiste.note@m4x.org>
> @@ -56,6 +56,7 @@ (define-module (gnu packages password-utils)
>    #:use-module (guix build-system go)
>    #:use-module (guix build-system trivial)
>    #:use-module (guix download)
> +  #:use-module (guix gexp)
>    #:use-module (guix git-download)
>    #:use-module (guix packages)
>    #:use-module (gnu packages)
> @@ -736,6 +737,41 @@ (define-public rofi-pass
>  @end enumerate")
>      (license license:gpl3)))
>  
> +(define-public tessen
> +  (package
> +    (name "tessen")
> +    (version "2.1.0")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/ayushnix/tessen/")
> +                    (commit (string-append "v" version))))
> +              (file-name (git-file-name name version))
> +              (sha256
> +               (base32
> +                "1ddsjhzp1qy3jfhxlrzcxgp0gza234yc0sdlngwa3xdj0wr40zs0"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     (list #:tests?
> +           #f ;no tests
> +           #:phases
> +           #~(modify-phases %standard-phases
> +               (add-after 'unpack 'patch-wtype-path
> +                 (lambda* (#:key inputs #:allow-other-keys)
> +                   (substitute* "tessen"
> +                     (("wtype") (search-input-file inputs "/bin/wtype")))))
> +               (delete 'configure)) ;no configure script
> +           #:make-flags
> +           #~(list (string-append "PREFIX="
> +                                  #$output))))
> +    (native-inputs (list scdoc))
> +    (inputs (list wtype))
> +    (home-page "https://github.com/ayushnix/tessen")
> +    (synopsis "Frontend for password-store and gopass")
> +    (description "Tessen is a bash script that can autotype and copy data
> +from password-store and gopass files.")
> +    (license license:gpl2+)))
> +
>  (define-public browserpass-native
>    (package
>      (name "browserpass-native")

Sorry, for comming up late, but the path to wl-copy binary should be
hardcoded as well.

/gnu/store/f48prcjwpw8wrfz0srjf096a9s8fja2w-profile/bin/tessen: line 476: wl-copy: command not found

-- 
Best regards,
Andrew Tropin

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 853 bytes --]

  parent reply	other threads:[~2022-03-25 15:11 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-21 17:43 [bug#54090] [PATCH 0/2] gnu: Add tessen Tanguy Le Carrour
2022-02-21 18:33 ` [bug#54090] [PATCH 1/2] gnu: Add wtype Tanguy Le Carrour
2022-02-21 18:33   ` [bug#54090] [PATCH 2/2] gnu: Add tessen Tanguy Le Carrour
2022-03-03 22:30     ` [bug#54090] [PATCH 0/2] " Ludovic Courtès
2022-03-06 18:40       ` Tanguy LE CARROUR
2022-03-06 19:33         ` Maxime Devos
2022-03-03 22:28   ` Ludovic Courtès
2022-03-10  6:53 ` [bug#54090] [PATCH v2] " Tanguy Le Carrour
2022-03-10 18:56   ` Nicolas Goaziou
2022-03-11  7:52     ` Tanguy LE CARROUR
2022-03-11  7:54 ` [bug#54090] [PATCH v3] " Tanguy Le Carrour
2022-03-16 14:45   ` bug#54090: [PATCH 0/2] " Ludovic Courtès
2022-03-16 15:01     ` [bug#54090] " Tanguy LE CARROUR
2022-03-25 15:10   ` Andrew Tropin [this message]
2022-03-25 16:22     ` [bug#54090] [PATCH v3] " Tanguy LE CARROUR
2022-03-25 17:14       ` Andrew Tropin
2022-03-29  7:45         ` Tanguy LE CARROUR

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=87y20y2hlq.fsf@trop.in \
    --to=andrew@trop.in \
    --cc=54090@debbugs.gnu.org \
    --cc=ludo@gnu.org \
    --cc=mail@nicolasgoaziou.fr \
    --cc=maximedevos@telenet.be \
    --cc=tanguy@bioneland.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.