2018-07-17 21:11:16 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, lvm2, json_c
|
|
|
|
, openssl, libuuid, pkgconfig, popt
|
2018-06-16 00:20:53 +01:00
|
|
|
, enablePython ? false, python2 ? null }:
|
2013-06-24 08:23:44 +01:00
|
|
|
|
2016-11-18 08:45:41 +00:00
|
|
|
assert enablePython -> python2 != null;
|
2009-03-01 11:11:21 +00:00
|
|
|
|
2011-12-28 21:48:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-08-20 15:42:51 +01:00
|
|
|
name = "cryptsetup-2.0.4";
|
2012-08-10 21:42:29 +01:00
|
|
|
|
2018-08-20 15:43:48 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2009-03-01 11:11:21 +00:00
|
|
|
src = fetchurl {
|
2018-04-03 12:25:13 +01:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v2.0/${name}.tar.xz";
|
2018-08-20 15:42:51 +01:00
|
|
|
sha256 = "0d2p9g2wqcv6l3671gvw96p16jadbgyh21ddy2bhqgi96dq3qflx";
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
|
2018-09-08 20:24:15 +01:00
|
|
|
# Disable 4 test cases that fail in a sandbox
|
|
|
|
patches = [ ./disable-failing-tests.patch ];
|
|
|
|
|
2018-08-08 22:18:19 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tests
|
2018-09-08 20:24:15 +01: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 22:18:19 +01:00
|
|
|
'';
|
|
|
|
|
2018-06-16 00:20:53 +01:00
|
|
|
NIX_LDFLAGS = "-lgcc_s";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-kernel_crypto"
|
|
|
|
"--enable-cryptsetup-reencrypt"
|
|
|
|
"--with-crypto_backend=openssl"
|
|
|
|
] ++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 21:42:29 +01:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-07-17 21:11:16 +01:00
|
|
|
buildInputs = [ lvm2 json_c openssl libuuid popt ]
|
2018-06-16 00:20:53 +01:00
|
|
|
++ stdenv.lib.optional enablePython python2;
|
2009-03-01 11:11:21 +00:00
|
|
|
|
2018-09-08 20:24:15 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2009-03-01 11:11:21 +00:00
|
|
|
meta = {
|
2016-07-03 20:27:01 +01:00
|
|
|
homepage = https://gitlab.com/cryptsetup/cryptsetup/;
|
2009-03-01 11:11:21 +00:00
|
|
|
description = "LUKS for dm-crypt";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ chaoflow ];
|
2009-09-20 10:37:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
}
|