2022-08-14 11:40:43 +02:00
|
|
|
{ lib, stdenv, fetchurl, lvm2, json_c, asciidoctor
|
2021-01-19 07:50:56 +01:00
|
|
|
, openssl, libuuid, pkg-config, popt }:
|
2009-03-01 12:11:21 +01:00
|
|
|
|
2011-12-28 22:48:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-18 01:54:43 +02:00
|
|
|
pname = "cryptsetup";
|
2022-08-14 11:40:43 +02:00
|
|
|
version = "2.5.0";
|
2012-08-10 22:42:29 +02:00
|
|
|
|
2022-01-24 13:53:19 +01:00
|
|
|
outputs = [ "bin" "out" "dev" "man" ];
|
2022-01-24 13:57:15 +01:00
|
|
|
separateDebugInfo = true;
|
2018-08-20 16:43:48 +02:00
|
|
|
|
2009-03-01 12:11:21 +01:00
|
|
|
src = fetchurl {
|
2022-08-14 11:40:43 +02:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v2.5/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-kYSm672c5+shEVLn90GmyC8tHMDiSoTsnFKTnu4PBUI=";
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
|
2018-08-08 23:18:19 +02:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tests
|
2018-09-08 21:24:15 +02:00
|
|
|
|
|
|
|
# O_DIRECT is filesystem dependent and fails in a sandbox (on tmpfs)
|
|
|
|
# and on several filesystem types (btrfs, zfs) without sandboxing.
|
|
|
|
# Remove it, see discussion in #46151
|
|
|
|
substituteInPlace tests/unit-utils-io.c --replace "| O_DIRECT" ""
|
2018-08-08 23:18:19 +02:00
|
|
|
'';
|
|
|
|
|
2022-01-24 11:20:24 +01:00
|
|
|
NIX_LDFLAGS = lib.optionalString (stdenv.cc.isGNU && !stdenv.hostPlatform.isStatic) "-lgcc_s";
|
2018-06-16 01:20:53 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-cryptsetup-reencrypt"
|
|
|
|
"--with-crypto_backend=openssl"
|
2021-09-01 18:57:13 +02:00
|
|
|
"--disable-ssh-token"
|
2022-01-24 13:53:19 +01:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isStatic [
|
|
|
|
"--disable-external-tokens"
|
|
|
|
# We have to override this even though we're removing token
|
|
|
|
# support, because the path still gets included in the binary even
|
|
|
|
# though it isn't used.
|
|
|
|
"--with-luks2-external-tokens-path=/"
|
2020-06-18 01:54:43 +02:00
|
|
|
];
|
2012-08-10 22:42:29 +02:00
|
|
|
|
2022-08-14 11:40:43 +02:00
|
|
|
nativeBuildInputs = [ pkg-config asciidoctor ];
|
2020-06-18 01:54:43 +02:00
|
|
|
buildInputs = [ lvm2 json_c openssl libuuid popt ];
|
2009-03-01 12:11:21 +01:00
|
|
|
|
2022-08-13 14:34:25 +02:00
|
|
|
# The test [7] header backup in compat-test fails with a mysterious
|
|
|
|
# "out of memory" error, even though tons of memory is available.
|
|
|
|
# Issue filed upstream: https://gitlab.com/cryptsetup/cryptsetup/-/issues/763
|
|
|
|
doCheck = !stdenv.hostPlatform.isMusl;
|
2018-09-08 21:24:15 +02:00
|
|
|
|
2009-03-01 12:11:21 +01:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gitlab.com/cryptsetup/cryptsetup/";
|
2009-03-01 12:11:21 +01:00
|
|
|
description = "LUKS for dm-crypt";
|
2021-01-15 15:45:37 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
}
|