2013-06-24 08:23:44 +01:00
|
|
|
{ stdenv, fetchurl, devicemapper, libgcrypt, libuuid, pkgconfig, popt
|
|
|
|
, 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 {
|
2013-11-20 21:13:55 +00:00
|
|
|
name = "cryptsetup-1.6.2";
|
2012-08-10 21:42:29 +01:00
|
|
|
|
2009-03-01 11:11:21 +00:00
|
|
|
src = fetchurl {
|
2011-12-28 21:48:58 +00:00
|
|
|
url = "http://cryptsetup.googlecode.com/files/${name}.tar.bz2";
|
2013-11-20 21:13:55 +00:00
|
|
|
sha256 = "16hh7v8bsqy0i1wlaj03kwqjv3liffkvg06lk75lng9hk00kywhm";
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
|
2013-06-24 08:23:44 +01:00
|
|
|
configureFlags = [ "--enable-cryptsetup-reencrypt" ]
|
|
|
|
++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 21:42:29 +01:00
|
|
|
|
2013-06-24 08:23:44 +01:00
|
|
|
buildInputs = [ devicemapper libgcrypt libuuid pkgconfig popt ]
|
|
|
|
++ 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";
|
|
|
|
license = "GPLv2";
|
2011-12-28 21:48:58 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
|
2009-09-20 10:37:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
}
|