diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-10 02:14:48 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-10 03:48:53 +0200 |
commit | b324c5b2b227e94fa648ae6378e517eb8dd1ff57 (patch) | |
tree | 3d4e6ab3cd85838cddb2aac902119fb2971ea6a7 /gnu/packages/cryptsetup.scm | |
parent | dce70d0e355176508c67440207689d8c0ac28c9a (diff) |
gnu: cryptsetup: Update to 2.3.3.
* gnu/packages/cryptsetup.scm (cryptsetup): Update to 2.3.3.
[inputs]: Use the default json-c version.
Diffstat (limited to 'gnu/packages/cryptsetup.scm')
-rw-r--r-- | gnu/packages/cryptsetup.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/cryptsetup.scm b/gnu/packages/cryptsetup.scm index 67e40cbc40..57333ea13d 100644 --- a/gnu/packages/cryptsetup.scm +++ b/gnu/packages/cryptsetup.scm @@ -35,7 +35,7 @@ (define-public cryptsetup (package (name "cryptsetup") - (version "2.3.1") + (version "2.3.3") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/utils/cryptsetup/v" @@ -43,7 +43,7 @@ "/cryptsetup-" version ".tar.xz")) (sha256 (base32 - "1lp7kwakm3ssp8ww1y33plvfmpas5krf14pdz91p1kx2b7as9awj")))) + "1pw2bq4nv2z3xyycckxkbp7dp9kkp2n6bspna3plryg277z4zjiv")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -58,7 +58,7 @@ `(("pkg-config" ,pkg-config))) (inputs `(("argon2" ,argon2) - ("json-c" ,json-c-0.13) ;XXX update this for cryptsetup >= 2.3 + ("json-c" ,json-c) ("libgcrypt" ,libgcrypt) ("lvm2" ,lvm2) ; device-mapper ("popt" ,popt) |