summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cryptsetup
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-04-03 11:25:13 +0000
committerGitHub <noreply@github.com>2018-04-03 11:25:13 +0000
commitd72f22607acd26c04f4447f3db99946aa15f9fe2 (patch)
tree0a9ed7d5725c6aef16d2763c76533a996197a5f2 /pkgs/os-specific/linux/cryptsetup
parent0c95dee8cb44ebb0df74e95e236d4d06042a0c0e (diff)
downloadnixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.tar
nixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.tar.gz
nixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.tar.bz2
nixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.tar.lz
nixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.tar.xz
nixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.tar.zst
nixpkgs-d72f22607acd26c04f4447f3db99946aa15f9fe2.zip
cryptsetup: 1.7.5 -> 2.0.2
Diffstat (limited to 'pkgs/os-specific/linux/cryptsetup')
-rw-r--r--pkgs/os-specific/linux/cryptsetup/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/cryptsetup/default.nix b/pkgs/os-specific/linux/cryptsetup/default.nix
index ef8c55853a3..e2917c81e15 100644
--- a/pkgs/os-specific/linux/cryptsetup/default.nix
+++ b/pkgs/os-specific/linux/cryptsetup/default.nix
@@ -1,22 +1,22 @@
-{ stdenv, fetchurl, devicemapper, openssl, libuuid, pkgconfig, popt
+{ stdenv, fetchurl, devicemapper, json_c, openssl, libuuid, pkgconfig, popt
 , enablePython ? false, python2 ? null
 }:
 
 assert enablePython -> python2 != null;
 
 stdenv.mkDerivation rec {
-  name = "cryptsetup-1.7.5";
+  name = "cryptsetup-2.0.2";
 
   src = fetchurl {
-    url = "mirror://kernel/linux/utils/cryptsetup/v1.7/${name}.tar.xz";
-    sha256 = "1gail831j826lmpdx2gsc83lp3br6wfnwh3vqwxaa1nn1lfwsc1b";
+    url = "mirror://kernel/linux/utils/cryptsetup/v2.0/${name}.tar.xz";
+    sha256 = "15wyjfgcqjf0wy5gxnmjj8aah33csv5v6n1hv9c8sxdzygbhb0ag";
   };
 
   configureFlags = [ "--enable-cryptsetup-reencrypt" "--with-crypto_backend=openssl" ]
                 ++ stdenv.lib.optional enablePython "--enable-python";
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ devicemapper openssl libuuid popt ]
+  buildInputs = [ devicemapper json_c openssl libuuid popt ]
              ++ stdenv.lib.optional enablePython python2;
 
   meta = {