[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
110/182: gnu: packages: Add rofi-pass.
From: |
guix-commits |
Subject: |
110/182: gnu: packages: Add rofi-pass. |
Date: |
Fri, 15 Nov 2019 00:01:49 -0500 (EST) |
kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.
commit 913b5768cd3fa769618c8175fe20813b7ab23a17
Author: Tanguy Le Carrour <address@hidden>
Date: Thu Nov 7 17:49:08 2019 +0100
gnu: packages: Add rofi-pass.
* gnu/packages/password-utils.scm (rofi-pass): New public variable.
Signed-off-by: Mathieu Othacehe <address@hidden>
---
gnu/packages/password-utils.scm | 45 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index bfd3c25..dd4eeba 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -23,6 +23,7 @@
;;; Copyright © 2018 Amirouche Boubekki <address@hidden>
;;; Copyright © 2018, 2019 Tim Gesthuizen <address@hidden>
;;; Copyright © 2019 Jens Mølgaard <address@hidden>
+;;; Copyright © 2019 Tanguy Le Carrour <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -43,6 +44,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system trivial)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix packages)
@@ -654,6 +656,49 @@ templates, clipboard handling, and per folder settings for
multi-recipient
encryption.")
(license license:gpl3+)))
+(define-public rofi-pass
+ (package
+ (name "rofi-pass")
+ (version "2.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://raw.githubusercontent.com/carnager/rofi-pass/"
+ version "/rofi-pass"))
+ (sha256
+ (base32 "0msldkndqp40nx1s5s7ggcr97ir4nshpmnyzvj5hqw1l7m3gvw6j"))
+ (file-name name)))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((source (string-append (assoc-ref %build-inputs "source")))
+ (script "rofi-pass")
+ (out (assoc-ref %outputs "out")))
+ (copy-file source script)
+ (chmod script #o555)
+ (install-file script (string-append out "/bin"))))))
+ (propagated-inputs
+ `(("password-store" ,password-store)
+ ("rofi" ,rofi)
+ ("xdotool" ,xdotool)))
+ (home-page "https://github.com/carnager/rofi-pass")
+ (synopsis "Rofi frontend for password-store")
+ (description "Rofi-pass provides a way to manipulate information stored
+using password-store through rofi interface:
+@enumerate
+@item open URLs of entries with hotkey;
+@item type any field from entry;
+@item auto-typing of user and/or password fields;
+@item auto-typing username based on path;
+@item auto-typing of more than one field, using the autotype entry;
+@item bookmarks mode (open stored URLs in browser, default: Alt+x).
+@end enumerate")
+ (license license:gpl3)))
+
(define-public argon2
(package
(name "argon2")
- 87/182: gnu: libdvdnav: Update to 6.0.1., (continued)
- 87/182: gnu: libdvdnav: Update to 6.0.1., guix-commits, 2019/11/15
- 88/182: gnu: libdvdread: Update to 6.0.2., guix-commits, 2019/11/15
- 85/182: gnu: lollypop: Update to 1.2.7., guix-commits, 2019/11/15
- 82/182: gnu: Add nginx Accept Language module., guix-commits, 2019/11/15
- 90/182: gnu: hplip: Actually wrap binaries., guix-commits, 2019/11/15
- 94/182: gnu: gnumeric: Update to 1.12.46., guix-commits, 2019/11/15
- 95/182: gnu: goffice: Update to 0.10.46., guix-commits, 2019/11/15
- 97/182: gnu: r-abcrf: Update to 1.8.1., guix-commits, 2019/11/15
- 103/182: gnu: fcitx: Update to 4.2.9.7., guix-commits, 2019/11/15
- 106/182: news: Add 'de' translation., guix-commits, 2019/11/15
- 110/182: gnu: packages: Add rofi-pass.,
guix-commits <=
- 115/182: gnu: python-psutil: Update to 5.6.5., guix-commits, 2019/11/15
- 98/182: gnu: r-polspline: Update to 1.1.17., guix-commits, 2019/11/15
- 105/182: gnu: certbot, python-acme: Update to 0.40.1., guix-commits, 2019/11/15
- 96/182: gnu: r-sp: Update to 1.3-2., guix-commits, 2019/11/15
- 102/182: gnu: fcitx: Don't use NAME in source URI., guix-commits, 2019/11/15
- 100/182: gnu: r-plotly: Update to 4.9.1., guix-commits, 2019/11/15
- 99/182: gnu: r-nlme: Update to 3.1-142., guix-commits, 2019/11/15
- 104/182: gnu: fcitx-configtool: Don't use NAME in source URI., guix-commits, 2019/11/15
- 114/182: gnu: python-astroid: Update to 2.3.3., guix-commits, 2019/11/15
- 117/182: gnu: perl-data-compare: Update to 1.27., guix-commits, 2019/11/15