2015-05-18 13:04:16 -07:00
|
|
|
{ stdenv, fetchurl, devicemapper, openssl, libuuid, pkgconfig, popt
|
2016-11-18 00:45:41 -08: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 {
|
2017-05-14 12:13:14 -07:00
|
|
|
name = "cryptsetup-1.7.5";
|
2012-08-10 13:42:29 -07:00
|
|
|
|
2009-03-01 03:11:21 -08:00
|
|
|
src = fetchurl {
|
2015-11-05 18:20:55 -08:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v1.7/${name}.tar.xz";
|
2017-05-14 12:13:14 -07:00
|
|
|
sha256 = "1gail831j826lmpdx2gsc83lp3br6wfnwh3vqwxaa1nn1lfwsc1b";
|
2009-03-01 03:11:21 -08:00
|
|
|
};
|
|
|
|
|
2015-05-18 13:04:16 -07:00
|
|
|
configureFlags = [ "--enable-cryptsetup-reencrypt" "--with-crypto_backend=openssl" ]
|
2013-06-24 00:23:44 -07:00
|
|
|
++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 13:42:29 -07:00
|
|
|
|
2015-05-18 13:04:16 -07:00
|
|
|
buildInputs = [ devicemapper openssl libuuid pkgconfig popt ]
|
2016-11-18 00:45:41 -08:00
|
|
|
++ stdenv.lib.optional enablePython python2;
|
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;
|
2011-12-28 13:48:58 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
|
2009-09-20 02:37:55 -07:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 03:11:21 -08:00
|
|
|
};
|
|
|
|
}
|