From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56462) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCQVy-0006Co-QS for guix-patches@gnu.org; Tue, 16 Oct 2018 10:40:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCQVu-0006mN-LF for guix-patches@gnu.org; Tue, 16 Oct 2018 10:40:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49532) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gCQVu-0006lh-G8 for guix-patches@gnu.org; Tue, 16 Oct 2018 10:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gCQVu-0006qn-8y for guix-patches@gnu.org; Tue, 16 Oct 2018 10:40:02 -0400 Subject: [bug#33060] [PATCH] gnu: Add enchive Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60979) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCN1u-0004n6-V7 for guix-patches@gnu.org; Tue, 16 Oct 2018 06:56:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCN1r-0005aV-P6 for guix-patches@gnu.org; Tue, 16 Oct 2018 06:56:50 -0400 Received: from mail-wm1-x333.google.com ([2a00:1450:4864:20::333]:36910) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gCN1r-0005YK-FE for guix-patches@gnu.org; Tue, 16 Oct 2018 06:56:47 -0400 Received: by mail-wm1-x333.google.com with SMTP id 185-v6so22845297wmt.2 for ; Tue, 16 Oct 2018 03:56:47 -0700 (PDT) Received: from lenovo (net-93-144-76-177.cust.vodafonedsl.it. [93.144.76.177]) by smtp.gmail.com with ESMTPSA id b143-v6sm18584559wma.28.2018.10.16.03.56.44 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 16 Oct 2018 03:56:44 -0700 (PDT) Date: Tue, 16 Oct 2018 03:56:44 -0700 (PDT) From: nixo Message-ID: <5gk1miqhw8.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: 33060@debbugs.gnu.org gnu/packages/crypto.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 33f4abb5a..08faccfa1 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -10,6 +10,7 @@ ;;; Copyright =C2=A9 2018 Efraim Flashner ;;; Copyright =C2=A9 2018 Arun Isaac ;;; Copyright =C2=A9 2018 Nicolas Goaziou +;;; Copyright =C2=A9 2018 Nicol=C3=B2 Balzarotti ;;; ;;; This file is part of GNU Guix. ;;; @@ -854,3 +855,34 @@ public-key cryptography. Asignify is designed to be p= ortable and self-contained with zero external dependencies. Asignify can verify OpenBSD signatures, = but it cannot sign messages in OpenBSD format yet.") (license license:bsd-2)))) + +(define-public enchive + (package + (name "enchive") + (version "3.4") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/skeeto/" name "/arch= ive/" + version ".tar.gz")) + (sha256 + (base32 + "17hrxpp4cpn10bk48sfvfjc8hghky34agsnypam1v9f36kbalqfk")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; no check target ' + #:make-flags (list "CC=3Dgcc" "PREFIX=3D$(out)") + #:phases (modify-phases %standard-phases + (delete 'configure) + (add-after 'install 'post-install + (lambda _ + (let* ((out (assoc-ref %outputs "out")) + (lisp (string-append out "/share/emacs/site-lisp"))) + (install-file "enchive-mode.el" lisp))))))) + (synopsis "Encrypted personal archives") + (description + "Enchive is a tool to encrypt files to yourself for long-term +archival. It's a focused, simple alternative to more complex solutions su= ch as +GnuPG or encrypted filesystems. Enchive has no external dependencies and = is +trivial to build for local use. Portability is emphasized over performanc= e.") + (home-page "https://github.com/skeeto/enchive") + (license license:unlicense))) --=20 2.19.1