2021-01-15 06:45:37 -08:00
|
|
|
{ lib, stdenv, fetchurl, lvm2, json_c
|
2021-01-18 22:50:56 -08:00
|
|
|
, openssl, libuuid, pkg-config, popt }:
|
2009-03-01 03:11:21 -08:00
|
|
|
|
2011-12-28 13:48:58 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-17 16:54:43 -07:00
|
|
|
pname = "cryptsetup";
|
2021-03-13 12:52:38 -08:00
|
|
|
version = "2.3.5";
|
2012-08-10 13:42:29 -07:00
|
|
|
|
2018-08-20 07:43:48 -07:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2009-03-01 03:11:21 -08:00
|
|
|
src = fetchurl {
|
2020-06-17 16:54:43 -07:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v2.3/${pname}-${version}.tar.xz";
|
2021-03-13 12:52:38 -08:00
|
|
|
sha256 = "sha256-ztmUb0RNEyU22vkvyKykJ3Y4o8LZbiBUCyuuTTb9cME=";
|
2009-03-01 03:11:21 -08:00
|
|
|
};
|
|
|
|
|
2018-09-08 12:24:15 -07:00
|
|
|
# Disable 4 test cases that fail in a sandbox
|
|
|
|
patches = [ ./disable-failing-tests.patch ];
|
|
|
|
|
2018-08-08 14:18:19 -07:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tests
|
2018-09-08 12:24:15 -07: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 14:18:19 -07:00
|
|
|
'';
|
|
|
|
|
2018-06-15 16:20:53 -07:00
|
|
|
NIX_LDFLAGS = "-lgcc_s";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-cryptsetup-reencrypt"
|
|
|
|
"--with-crypto_backend=openssl"
|
2020-06-17 16:54:43 -07:00
|
|
|
];
|
2012-08-10 13:42:29 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-06-17 16:54:43 -07:00
|
|
|
buildInputs = [ lvm2 json_c openssl libuuid popt ];
|
2009-03-01 03:11:21 -08:00
|
|
|
|
2018-09-08 12:24:15 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2009-03-01 03:11:21 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://gitlab.com/cryptsetup/cryptsetup/";
|
2009-03-01 03:11:21 -08:00
|
|
|
description = "LUKS for dm-crypt";
|
2021-01-15 06:45:37 -08:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2009-03-01 03:11:21 -08:00
|
|
|
};
|
|
|
|
}
|