2015-05-18 20:04:16 +00:00
|
|
|
{ stdenv, fetchurl, devicemapper, openssl, libuuid, pkgconfig, popt
|
2013-06-24 07:23:44 +00:00
|
|
|
, enablePython ? false, python ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert enablePython -> python != null;
|
2009-03-01 11:11:21 +00:00
|
|
|
|
2011-12-28 21:48:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 18:31:50 +00:00
|
|
|
name = "cryptsetup-1.6.7";
|
2012-08-10 20:42:29 +00:00
|
|
|
|
2009-03-01 11:11:21 +00:00
|
|
|
src = fetchurl {
|
2015-03-26 18:31:50 +00:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v1.6/${name}.tar.xz";
|
|
|
|
sha256 = "0878vwblazms1dac2ds7vyz8pgi1aac8870ccnl2s0v2sv428g62";
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
|
2015-05-18 20:04:16 +00:00
|
|
|
configureFlags = [ "--enable-cryptsetup-reencrypt" "--with-crypto_backend=openssl" ]
|
2013-06-24 07:23:44 +00:00
|
|
|
++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 20:42:29 +00:00
|
|
|
|
2015-05-18 20:04:16 +00:00
|
|
|
buildInputs = [ devicemapper openssl libuuid pkgconfig popt ]
|
2013-06-24 07:23:44 +00:00
|
|
|
++ stdenv.lib.optional enablePython python;
|
2009-03-01 11:11:21 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://code.google.com/p/cryptsetup/;
|
|
|
|
description = "LUKS for dm-crypt";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-12-28 21:48:58 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
|
2009-09-20 09:37:55 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
}
|