summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cryptsetup
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-06-07 22:15:35 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2019-06-07 22:15:35 +0200
commit2587df7f0229994678c767e02f2c5707037b2da5 (patch)
treebd7c2ef7cec55dbe20bed79860a09cc2df323642 /pkgs/os-specific/linux/cryptsetup
parent2ef3b5200a419787604ca922be6fd4db69228489 (diff)
downloadnixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.tar
nixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.tar.gz
nixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.tar.bz2
nixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.tar.lz
nixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.tar.xz
nixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.tar.zst
nixpkgs-2587df7f0229994678c767e02f2c5707037b2da5.zip
cryptsetup: enable kernel crypto api support again
This is needed for tcrypt and the benchmark subcommand. If enabled,
it is also used to unlock LUKS2 volumes and therefore the kernel modules
providing this feature need to be available in our initrd.

Fixes #42163. #54019.
Diffstat (limited to 'pkgs/os-specific/linux/cryptsetup')
-rw-r--r--pkgs/os-specific/linux/cryptsetup/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/cryptsetup/default.nix b/pkgs/os-specific/linux/cryptsetup/default.nix
index fac62597013..ebd09759be6 100644
--- a/pkgs/os-specific/linux/cryptsetup/default.nix
+++ b/pkgs/os-specific/linux/cryptsetup/default.nix
@@ -32,7 +32,6 @@ stdenv.mkDerivation rec {
   NIX_LDFLAGS = "-lgcc_s";
 
   configureFlags = [
-    "--disable-kernel_crypto"
     "--enable-cryptsetup-reencrypt"
     "--with-crypto_backend=openssl"
   ] ++ stdenv.lib.optional enablePython "--enable-python";