all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#31999] [PATCH 1/7] gnu: Add volume-key.
@ 2018-06-28 21:32 Pierre Neidhardt
  2018-06-28 21:35 ` [bug#31999] [PATCH 2/7] gnu: Add ndctl Pierre Neidhardt
                   ` (2 more replies)
  0 siblings, 3 replies; 65+ messages in thread
From: Pierre Neidhardt @ 2018-06-28 21:32 UTC (permalink / raw)
  To: 31999

* gnu/package/disk.scm (volume-key): New variable.
---
 gnu/packages/disk.scm | 47 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 46 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index bdd24a315..9c5cdf956 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2018 Vasile Dumitrascu <va511e@yahoo.com>
 ;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
+;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -55,7 +56,11 @@
   #:use-module (gnu packages compression)
   #:use-module (gnu packages vim)
   #:use-module (gnu packages w3m)
-  #:use-module (gnu packages xml))
+  #:use-module (gnu packages xml)
+  #:use-module (gnu packages cryptsetup)
+  #:use-module (gnu packages gnuzilla)
+  #:use-module (gnu packages gnupg)
+  #:use-module (gnu packages swig))
 
 (define-public parted
   (package
@@ -547,3 +552,43 @@ provides a minimalistic and nice curses interface with a view on the directory
 hierarchy.  It ships with @code{rifle}, a file launcher that is good at
 automatically finding out which program to use for what file type.")
     (license license:gpl3)))
+
+(define-public volume-key
+  (package
+    (name "volume-key")
+    (version "0.3.10")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://releases.pagure.org/volume_key/volume_key-"
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "19wqgrd0cnnjs1b1d7s9ssc957vis8vj7bls9rkwhf9ywgkrswn5"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("util-linux" ,util-linux)
+       ("glib" ,glib)
+       ("swig" ,swig)
+       ("lvm2" ,lvm2)
+       ("python" ,python-2)))           ; Used to generate the Python bindings.
+    (inputs
+     `(("cryptsetup" ,cryptsetup)
+       ("nss" ,nss)
+       ("gpgme" ,gpgme)))
+    (arguments
+     `(#:tests? #f ; Not sure how tests are supposed to pass, even when run manually.
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'patch-python.h-path
+           (lambda _
+             (let ((python (assoc-ref %build-inputs "python")))
+               (substitute* "Makefile.in"
+                 (("/usr/include/python") (string-append python "/include/python")))
+               #t))))))
+    (home-page "https://pagure.io/volume_key")
+    (synopsis "Manipulate storage volume encryption keys")
+    (description
+     "A library for manipulating storage volume encryption keys and storing
+them separately from volumes to handle forgotten passphrases.")
+    (license license:gpl2+)))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 65+ messages in thread

end of thread, other threads:[~2018-08-01 11:39 UTC | newest]

Thread overview: 65+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-28 21:32 [bug#31999] [PATCH 1/7] gnu: Add volume-key Pierre Neidhardt
2018-06-28 21:35 ` [bug#31999] [PATCH 2/7] gnu: Add ndctl Pierre Neidhardt
2018-06-28 21:35   ` [bug#31999] [PATCH 3/7] gnu: Add libbytesize Pierre Neidhardt
2018-07-12 20:20     ` Marius Bakke
2018-07-28 22:07       ` Pierre Neidhardt
2018-07-29 22:10         ` Marius Bakke
2018-07-30  9:59           ` Pierre Neidhardt
2018-07-30 13:36             ` Pierre Neidhardt
2018-07-30 18:42               ` Marius Bakke
2018-06-28 21:35   ` [bug#31999] [PATCH 4/7] gnu: lvm2: Add device-mapper-event support Pierre Neidhardt
2018-07-12 21:26     ` Marius Bakke
2018-07-28 22:09       ` Pierre Neidhardt
2018-07-29 22:33         ` Marius Bakke
2018-07-30 10:10           ` Pierre Neidhardt
2018-07-30 10:12           ` Pierre Neidhardt
2018-07-30 12:50             ` Marius Bakke
2018-07-30 13:36               ` Pierre Neidhardt
2018-07-30 18:43                 ` Marius Bakke
2018-06-28 21:35   ` [bug#31999] [PATCH 5/7] gnu: Add dmraid Pierre Neidhardt
2018-07-12 21:28     ` Marius Bakke
2018-07-28 15:32       ` Pierre Neidhardt
2018-07-28 22:10         ` Pierre Neidhardt
2018-07-29 22:42           ` Marius Bakke
2018-07-30 10:23             ` Pierre Neidhardt
2018-07-30 13:37               ` Pierre Neidhardt
2018-07-30 18:44                 ` Marius Bakke
2018-08-01  3:21                   ` [bug#31999] [PATCH 5/7] gnu: Add dmraid. --- Failed to build from master Brendan Tildesley
2018-08-01 11:37                     ` Marius Bakke
2018-06-28 21:35   ` [bug#31999] [PATCH 6/7] gnu: Add libblockdev Pierre Neidhardt
2018-07-12 20:24     ` Marius Bakke
2018-07-28 22:10       ` Pierre Neidhardt
2018-07-29 22:56     ` Marius Bakke
2018-07-30  9:14       ` Pierre Neidhardt
2018-07-30 12:52         ` Marius Bakke
2018-07-30 13:37           ` Pierre Neidhardt
2018-07-30 18:48             ` Marius Bakke
2018-06-28 21:35   ` [bug#31999] [PATCH 7/7] gnu: Update udisk to 2.7.6 Pierre Neidhardt
2018-06-28 21:40     ` Pierre Neidhardt
2018-07-12 21:34     ` Marius Bakke
2018-07-28 22:11       ` Pierre Neidhardt
2018-07-28 22:17         ` Pierre Neidhardt
2018-07-29 23:01         ` Marius Bakke
2018-07-30 13:38           ` [bug#31999] [PATCH 7/7] gnu: Update udisks to 2.7.7 Pierre Neidhardt
2018-07-30 18:54             ` Marius Bakke
2018-07-30 19:20               ` Pierre Neidhardt
2018-07-30 19:36                 ` Pierre Neidhardt
2018-07-30 19:39                 ` Marius Bakke
2018-07-30 19:50                   ` Pierre Neidhardt
2018-07-30 20:59                     ` Marius Bakke
2018-07-12 20:12   ` [bug#31999] [PATCH 2/7] gnu: Add ndctl Marius Bakke
2018-07-28 22:05     ` Pierre Neidhardt
2018-07-29 22:23       ` Marius Bakke
2018-07-30  9:47         ` Pierre Neidhardt
2018-07-30 12:54           ` Marius Bakke
2018-07-30 13:35             ` Pierre Neidhardt
2018-07-30 18:56               ` Marius Bakke
2018-07-12 20:04 ` [bug#31999] [PATCH 1/7] gnu: Add volume-key Marius Bakke
2018-07-28 21:58   ` [bug#32299] " Pierre Neidhardt
2018-07-28 22:02     ` bug#32299: " Pierre Neidhardt
2018-07-29 22:28     ` [bug#32299] " Marius Bakke
2018-07-30  9:19       ` [bug#31999] " Pierre Neidhardt
2018-07-30 13:16         ` [bug#31999] " Pierre Neidhardt
2018-07-30 19:01           ` Marius Bakke
2018-07-28 22:04   ` Pierre Neidhardt
2018-07-30 19:53 ` bug#31999: [PATCH 7/7] gnu: Update udisks to 2.7.7 Pierre Neidhardt

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.