me
/
guix
Archived
1
0
Fork 0

gnu: cryptsetup: Update to 1.7.2.

* gnu/packages/cryptsetup.scm (cryptsetup): Update to 1.7.2.
[source]: Use kernel mirror.
[home-page]: Update URL.
master
Leo Famulari 2016-10-03 01:44:27 -04:00
parent 2c3eb4b85b
commit 491dbac415
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 7 additions and 5 deletions

View File

@ -21,6 +21,7 @@
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix utils)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages gnupg) #:use-module (gnu packages gnupg)
#:use-module (gnu packages popt) #:use-module (gnu packages popt)
@ -30,14 +31,15 @@
(define-public cryptsetup (define-public cryptsetup
(package (package
(name "cryptsetup") (name "cryptsetup")
(version "1.6.1") (version "1.7.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://cryptsetup.googlecode.com/files/cryptsetup-" (uri (string-append "mirror://kernel.org/linux/utils/cryptsetup/v"
version ".tar.bz2")) (version-major+minor version)
"/" name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"170lalkhh2fa316d12i6r7jprm0yss3c949d91069sq37ik6xwxs")))) "0hikwkkj692c955k29c4zixj8wp8k3z17jc6ihb4j5qcbyzmvcyv"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("libgcrypt" ,libgcrypt) `(("libgcrypt" ,libgcrypt)
@ -55,4 +57,4 @@ passwords. In contrast to existing solutions, LUKS stores all setup necessary
setup information in the partition header, enabling the users to transport setup information in the partition header, enabling the users to transport
or migrate their data seamlessly.") or migrate their data seamlessly.")
(license license:gpl2) (license license:gpl2)
(home-page "http://code.google.com/p/cryptsetup/"))) (home-page "https://gitlab.com/cryptsetup/cryptsetup")))