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