From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42161) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iL0kY-00021z-00 for guix-patches@gnu.org; Thu, 17 Oct 2019 04:03:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iL0kW-00018s-MM for guix-patches@gnu.org; Thu, 17 Oct 2019 04:03:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38248) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iL0kV-00018T-25 for guix-patches@gnu.org; Thu, 17 Oct 2019 04:03:07 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iL0kS-0002Ou-CA for guix-patches@gnu.org; Thu, 17 Oct 2019 04:03:04 -0400 Subject: [bug#37788] [PATCH] gnu: Add minisign. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42031) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iL0k4-00020Z-5T for guix-patches@gnu.org; Thu, 17 Oct 2019 04:02:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iL0k2-00011J-Q0 for guix-patches@gnu.org; Thu, 17 Oct 2019 04:02:40 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:34933) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iL0k2-00010p-JX for guix-patches@gnu.org; Thu, 17 Oct 2019 04:02:38 -0400 Received: from localhost (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 4F4B1200012 for ; Thu, 17 Oct 2019 08:02:34 +0000 (UTC) Date: Thu, 17 Oct 2019 10:02:33 +0200 From: Tanguy Le Carrour Message-ID: <20191017080233.dcsjsyh5ui6x67kj@rafflesia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="dgvi3xw7x5egrpwt" Content-Disposition: inline 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: 37788@debbugs.gnu.org --dgvi3xw7x5egrpwt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --dgvi3xw7x5egrpwt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline >From 7d5c08fd00e9cd5d883fc939187ce6fc6e8c45f7 Mon Sep 17 00:00:00 2001 From: Tanguy Le Carrour Date: Thu, 17 Oct 2019 09:57:28 +0200 Subject: [PATCH] gnu: Add minisign. * gnu/packages/crypto.scm (minisign): New public variable. --- gnu/packages/crypto.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 9592d18011..baf7c81a6a 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -974,3 +974,37 @@ pre-shared keys out of band. It is designed to handle large amounts of data quickly by using all your CPU cores and hardware acceleration.") (home-page "https://github.com/vstakhov/hpenc") (license license:bsd-3))) + +(define-public minisign + (package + (name "minisign") + (version "0.8") + (source + (origin + (method url-fetch) + (uri + (string-append "https://github.com/jedisct1/minisign/releases/download/" + version "/minisign-" version ".tar.gz")) + (sha256 + (base32 + "10hhgwxf9rcdlr00shrkcyxndrc22dh5lj8k5z27xg3nc0jba3hk")))) + (build-system cmake-build-system) + (arguments + ; No test suite + `(#:tests? #f)) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libsodium" ,libsodium))) + (home-page "https://jedisct1.github.io/minisign") + (synopsis "Tool to sign files and verify signatures") + (description + "Minisign is a dead simple tool to sign files and verify signatures. It is +portable, lightweight, and uses the highly secure Ed25519 public-key signature +system. Signature written by minisign can be verified using OpenBSD's +signify tool: public key files and signature files are compatible. However, +minisign uses a slightly different format to store secret keys. Minisign +signatures include trusted comments in addition to untrusted comments. +Trusted comments are signed, thus verified, before being displayed.") + (license license:isc))) + -- 2.23.0 --dgvi3xw7x5egrpwt--