2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchurl, lvm2, json_c
|
2018-07-17 13:11:16 -07:00
|
|
|
, openssl, libuuid, pkgconfig, popt
|
2018-06-15 16:20:53 -07:00
|
|
|
, enablePython ? false, python2 ? null }:
|
2013-06-24 00:23:44 -07:00
|
|
|
|
2016-11-18 00:45:41 -08:00
|
|
|
assert enablePython -> python2 != null;
|
2009-03-01 03:11:21 -08:00
|
|
|
|
2011-12-28 13:48:58 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-01 14:01:21 -08:00
|
|
|
name = "cryptsetup-2.1.0";
|
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 {
|
2019-03-01 14:01:21 -08:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v2.1/${name}.tar.xz";
|
|
|
|
sha256 = "15y8n547garz0x5kqv09gscdsrz0c0y1y6c5cp8pccwg3xsb5vm3";
|
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-10 02:53:45 -07:00
|
|
|
${stdenv.lib.optionalString enablePython ''
|
|
|
|
patchShebangs ./python/pycryptsetup-test.py
|
|
|
|
''}
|
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"
|
|
|
|
] ++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 13:42:29 -07:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-07-17 13:11:16 -07:00
|
|
|
buildInputs = [ lvm2 json_c openssl libuuid popt ]
|
2018-06-15 16:20:53 -07:00
|
|
|
++ stdenv.lib.optional enablePython python2;
|
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 = {
|
2016-07-03 12:27:01 -07:00
|
|
|
homepage = https://gitlab.com/cryptsetup/cryptsetup/;
|
2009-03-01 03:11:21 -08:00
|
|
|
description = "LUKS for dm-crypt";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2019-02-22 07:14:13 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2009-09-20 02:37:55 -07:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 03:11:21 -08:00
|
|
|
};
|
|
|
|
}
|