diff options
| author | Andreas Enge <andreas@enge.fr> | 2013-05-08 16:35:34 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2013-05-08 16:36:10 +0200 |
| commit | e3c5f2934a17f2ff90048b1498918e1aea3ee51e (patch) | |
| tree | f9311a35451fad5e76326377f179e421dc0ae947 /gnu | |
| parent | 88226a504f272e7f50401a08f94fab1add0bef76 (diff) | |
gnu: Add cryptsetup.
* gnu/packages/cryptsetup.scm: New file.
* Makefile.am (MODULES): Add it.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cryptsetup.scm | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/gnu/packages/cryptsetup.scm b/gnu/packages/cryptsetup.scm new file mode 100644 index 00000000000..c746e28721d --- /dev/null +++ b/gnu/packages/cryptsetup.scm | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | ||
| 2 | ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> | ||
| 3 | ;;; | ||
| 4 | ;;; This file is part of GNU Guix. | ||
| 5 | ;;; | ||
| 6 | ;;; GNU Guix is free software; you can redistribute it and/or modify it | ||
| 7 | ;;; under the terms of the GNU General Public License as published by | ||
| 8 | ;;; the Free Software Foundation; either version 3 of the License, or (at | ||
| 9 | ;;; your option) any later version. | ||
| 10 | ;;; | ||
| 11 | ;;; GNU Guix is distributed in the hope that it will be useful, but | ||
| 12 | ;;; WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | ;;; GNU General Public License for more details. | ||
| 15 | ;;; | ||
| 16 | ;;; You should have received a copy of the GNU General Public License | ||
| 17 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | |||
| 19 | (define-module (gnu packages cryptsetup) | ||
| 20 | #:use-module ((guix licenses) | ||
| 21 | #:renamer (symbol-prefix-proc 'license:)) | ||
| 22 | #:use-module (guix packages) | ||
| 23 | #:use-module (guix download) | ||
| 24 | #:use-module (guix build-system gnu) | ||
| 25 | #:use-module (gnu packages) | ||
| 26 | #:use-module (gnu packages gnupg) | ||
| 27 | #:use-module (gnu packages lvm) | ||
| 28 | #:use-module (gnu packages popt) | ||
| 29 | #:use-module (gnu packages python) | ||
| 30 | #:use-module (gnu packages linux)) | ||
| 31 | |||
| 32 | (define-public cryptsetup | ||
| 33 | (package | ||
| 34 | (name "cryptsetup") | ||
| 35 | (version "1.6.1") | ||
| 36 | (source (origin | ||
| 37 | (method url-fetch) | ||
| 38 | (uri (string-append "http://cryptsetup.googlecode.com/files/cryptsetup-" | ||
| 39 | version ".tar.bz2")) | ||
| 40 | (sha256 | ||
| 41 | (base32 | ||
| 42 | "170lalkhh2fa316d12i6r7jprm0yss3c949d91069sq37ik6xwxs")))) | ||
| 43 | (build-system gnu-build-system) | ||
| 44 | (inputs | ||
| 45 | `(("libgcrypt" ,libgcrypt) | ||
| 46 | ("lvm2" ,lvm2) | ||
| 47 | ("popt" ,popt) | ||
| 48 | ("python" ,python) | ||
| 49 | ("util-linux" ,util-linux))) | ||
| 50 | (synopsis "hard disk encryption tool") | ||
| 51 | (description | ||
| 52 | "LUKS (Linux Unified Key Setup)/Cryptsetup provides a standard on-disk | ||
| 53 | encryption format, which does not only facilitate compatibility among | ||
| 54 | distributions, but which also provides secure management of multiple user | ||
| 55 | passwords. In contrast to existing solutions, LUKS stores all setup necessary | ||
| 56 | setup information in the partition header, enabling the users to transport | ||
| 57 | or migrate their data seamlessly.") | ||
| 58 | (license license:gpl2) | ||
| 59 | (home-page "http://code.google.com/p/cryptsetup/"))) | ||
