summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cryptsetup
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-11-05 18:20:55 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-11-05 18:21:43 -0800
commit7cd13a21affbe36dc77cfc4af1f6ec902270949c (patch)
tree2bd945d23f6c2254218d7cfc60da8c8779a2dae0 /pkgs/os-specific/linux/cryptsetup
parent168220741d361d9d4869d58324f6f43fa1152b72 (diff)
downloadnixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.tar
nixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.tar.gz
nixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.tar.bz2
nixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.tar.lz
nixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.tar.xz
nixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.tar.zst
nixpkgs-7cd13a21affbe36dc77cfc4af1f6ec902270949c.zip
cryptsetup: 1.6.7 -> 1.7.0
Diffstat (limited to 'pkgs/os-specific/linux/cryptsetup')
-rw-r--r--pkgs/os-specific/linux/cryptsetup/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/cryptsetup/default.nix b/pkgs/os-specific/linux/cryptsetup/default.nix
index 4e3ede284b4..3222ddbd7d9 100644
--- a/pkgs/os-specific/linux/cryptsetup/default.nix
+++ b/pkgs/os-specific/linux/cryptsetup/default.nix
@@ -5,11 +5,11 @@
 assert enablePython -> python != null;
 
 stdenv.mkDerivation rec {
-  name = "cryptsetup-1.6.7";
+  name = "cryptsetup-1.7.0";
 
   src = fetchurl {
-    url = "mirror://kernel/linux/utils/cryptsetup/v1.6/${name}.tar.xz";
-    sha256 = "0878vwblazms1dac2ds7vyz8pgi1aac8870ccnl2s0v2sv428g62";
+    url = "mirror://kernel/linux/utils/cryptsetup/v1.7/${name}.tar.xz";
+    sha256 = "0j6iwf64pdrl4nm5ypc2r33b3k0aflb939wz2496vcqdrjkj8m87";
   };
 
   configureFlags = [ "--enable-cryptsetup-reencrypt" "--with-crypto_backend=openssl" ]