From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51121) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1grfk0-0002yo-Vr for guix-patches@gnu.org; Thu, 07 Feb 2019 04:13:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1grfk0-00043g-3j for guix-patches@gnu.org; Thu, 07 Feb 2019 04:13:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37258) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1grfk0-00043a-0Q for guix-patches@gnu.org; Thu, 07 Feb 2019 04:13:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1grfjz-0007Dg-Ie for guix-patches@gnu.org; Thu, 07 Feb 2019 04:13:03 -0500 Subject: [bug#34364] Add package: Emacs-shroud; Emacs interface for shroud Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:50839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1grfix-0002R4-IG for guix-patches@gnu.org; Thu, 07 Feb 2019 04:12:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1grfiv-0003bR-GI for guix-patches@gnu.org; Thu, 07 Feb 2019 04:11:59 -0500 Received: from knopi.disroot.org ([178.21.23.139]:33598) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1grfiu-0003Zi-On for guix-patches@gnu.org; Thu, 07 Feb 2019 04:11:57 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 4EB77276AA for ; Thu, 7 Feb 2019 10:11:51 +0100 (CET) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id f6UfuX1EplxQ for ; Thu, 7 Feb 2019 10:11:49 +0100 (CET) From: Amar Singh Date: Thu, 07 Feb 2019 14:41:45 +0530 Message-ID: <878sysotda.fsf@disroot.org> Mime-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34364@debbugs.gnu.org This is not a polished software by any means. This is an interface for the shroud password manager https://dthompson.us/projects/shroud.html Patch: >From b7f9ec3820158d2b6fdde64dfed0fa7233ec5951 Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Thu, 7 Feb 2019 14:37:25 +0530 Subject: [PATCH] add emacs-shroud; emacs interface for shroud Signed-off-by: Amar Singh --- 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 960518f9d..d43153b55 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8518,6 +8518,28 @@ close, copy, cut, paste, undo, redo.") standard Unix password manager\").") (license license:gpl2+))) +(define-public emacs-shroud + (package + (name "emacs-shroud") + (version "0.1") + (source (origin + (method url-fetch) + (uri + (string-append "https://github.com/o-nly/" name "/archive/release-" version ".tar.gz")) + (sha256 + (base32 + "0jxfa2fa6r0ay9c6nf4xwz5vddb1v45cgaxkgdxxhck0l527i3yc")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-f" ,emacs-f) + ("emacs-s" ,emacs-s) + ("shroud" ,shroud))) + (home-page "http://nly.info.tm:9001/emacs/shroud.el") + (synopsis "Shroud (gpg) support for Emacs") + (description + "This package provides functions for working with shroud password manager.") + (license license:gpl3+))) + (define-public emacs-pass (package (name "emacs-pass") -- 2.20.1