guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add emacs-password-generator.


From: guix-commits
Subject: 02/02: gnu: Add emacs-password-generator.
Date: Thu, 27 Feb 2020 04:53:42 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 83ee1e91b05e324edcdfbafe5b203064f1caf802
Author: Arun Isaac <address@hidden>
AuthorDate: Wed Feb 26 23:36:01 2020 +0530

    gnu: Add emacs-password-generator.
    
    * gnu/packages/emacs-xyz.scm (emacs-password-generator): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 177b2f3..0120392 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21639,3 +21639,25 @@ emoji.")
 ExifTool supports reading and writing metadata in various formats including
 EXIF, XMP and IPTC.")
     (license license:gpl3+)))
+
+(define-public emacs-password-generator
+  (package
+    (name "emacs-password-generator")
+    (version "1.01")
+    (home-page "https://github.com/zargener/emacs-password-genarator";)
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit "904cdb591a04305ba882ce19e1d117f5fa60f7d3")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1qgvn79qz1h8ykm5i1qv2fja4v2y0g2i0n5sf7byhnqhqlwn63nv"))))
+    (build-system emacs-build-system)
+    (synopsis "Generate passwords inside Emacs")
+    (description "@code{emacs-password-generator} provides simple functions to
+generate random passwords and insert them into the current buffer.  It also
+supports generation of phonetic and numeric passwords.")
+    (license license:artistic2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]