From: David Thompson <dthompson2@worcester.edu>
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Add libsodium
Date: Wed, 25 Jun 2014 20:39:33 -0400 [thread overview]
Message-ID: <87zjh0tsfu.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> (raw)
[-- Attachment #1: Type: text/plain, Size: 172 bytes --]
This patch adds a package for a cryptography library called libsodim. I
created a (gnu packages crypto) module to house similar libraries and
applications in the future.
[-- Attachment #2: 0001-gnu-Add-libsodium.patch --]
[-- Type: text/x-diff, Size: 2889 bytes --]
From 873dffc9dc892ad252a33b2b27f28d41573d6bf7 Mon Sep 17 00:00:00 2001
From: David Thompson <dthompson2@worcester.edu>
Date: Wed, 25 Jun 2014 20:32:23 -0400
Subject: [PATCH] gnu: Add libsodium.
* gnu-system.am (GNU_SYSTEM_MODULES): Add crypto.scm.
* gnu/packages/crypto.scm: New file.
---
gnu-system.am | 1 +
gnu/packages/crypto.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
create mode 100644 gnu/packages/crypto.scm
diff --git a/gnu-system.am b/gnu-system.am
index 9c91eac..a9741b9 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -58,6 +58,7 @@ GNU_SYSTEM_MODULES = \
gnu/packages/cpio.scm \
gnu/packages/cppi.scm \
gnu/packages/cross-base.scm \
+ gnu/packages/crypto.scm \
gnu/packages/cryptsetup.scm \
gnu/packages/curl.scm \
gnu/packages/cursynth.scm \
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
new file mode 100644
index 0000000..e78afb6
--- /dev/null
+++ b/gnu/packages/crypto.scm
@@ -0,0 +1,44 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2014 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages crypto)
+ #:use-module (gnu packages)
+ #:use-module (guix licenses)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu))
+
+(define-public libsodium
+ (package
+ (name "libsodium")
+ (version "0.5.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://download.libsodium.org/libsodium/releases/libsodium-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1w7rrnsvhhzhywrr3nhlhppv4kqzdszz3dwy8jrsv8lrj5hs181w"))))
+ (build-system gnu-build-system)
+ (synopsis "Portable NaCl-based crypto library")
+ (description
+ "libsodium is a new easy-to-use high-speed software library for network
+communication, encryption, decryption, signatures, etc.")
+ (license isc)
+ (home-page "https://github.com/jedisct1/libsodium"))) ; No real homepage
--
2.0.0
[-- Attachment #3: Type: text/plain, Size: 136 bytes --]
--
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate
next reply other threads:[~2014-06-26 0:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-26 0:39 David Thompson [this message]
2014-06-26 5:09 ` [PATCH] gnu: Add libsodium John Darrington
2014-06-26 11:43 ` David Thompson
2014-06-26 12:44 ` Ludovic Courtès
2014-06-26 12:48 ` Ludovic Courtès
2014-06-26 13:03 ` Thompson, David
2014-06-26 13:57 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87zjh0tsfu.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me \
--to=dthompson2@worcester.edu \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.