From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hUw8z-0004TE-RE for guix-patches@gnu.org; Sun, 26 May 2019 12:37:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hUw8w-0007XK-NK for guix-patches@gnu.org; Sun, 26 May 2019 12:37:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38022) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hUw8t-0007Vv-4o for guix-patches@gnu.org; Sun, 26 May 2019 12:37:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hUw8s-0004Fk-2G for guix-patches@gnu.org; Sun, 26 May 2019 12:37:03 -0400 Subject: [bug#34364] [PATCH] gnu: Add emacs-shroud. References: <878sysotda.fsf@disroot.org> In-Reply-To: <878sysotda.fsf@disroot.org> Resent-Message-ID: From: Amar Singh Date: Sun, 26 May 2019 22:05:52 +0530 Message-ID: <85ef4l6umv.fsf@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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 --=-=-= Content-Type: text/plain Updated emacs-shroud. It should be usable now. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-shroud.patch >From 06b1b2d4567adf27d4e980bcdf9c2886d9afdcbd Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Mon, 22 Apr 2019 01:28:32 +0530 Subject: [PATCH] gnu: Add emacs-shroud. * gnu/packages/emacs-xyz.scm (emacs-shroud): New variable. --- gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9199b45e40..d97914faef 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -15620,3 +15620,33 @@ verb commands which would are normally destructive (such as deletion) are provided. Those alternative commands are and bound by default to their corresponding Evil keys.") (license license:expat)))) + +(define-public emacs-shroud + (package + (name "emacs-shroud") + (version "1.15.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/o-nly/emacs-shroud.git") + (commit version))) + (file-name + (git-file-name name version)) + (sha256 + (base32 + "0wvm4lxqcc1p8v7rpqal3bnqgnpk1gs7v18i83f6cvi5d88jkgdg")))) + (build-system emacs-build-system) + (propagated-inputs + `(("shroud" ,shroud) + ("emacs-f" ,emacs-f) + ("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s) + ("emacs-bui" ,emacs-bui) + ("gnupg" ,gnupg))) + (home-page "http://git.nly.info.tm:9001/shroud.git") + (synopsis "Emacs interface for Shroud password manager") + (description + "Provides Emacs interface to the Shroud password manager.") + (license license:gpl3+))) -- 2.21.0 --=-=-=--