2013-06-24 09:23:44 +02:00
|
|
|
{ stdenv, fetchurl, devicemapper, libgcrypt, libuuid, pkgconfig, popt
|
|
|
|
, enablePython ? false, python ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert enablePython -> python != null;
|
2009-03-01 12:11:21 +01:00
|
|
|
|
2011-12-28 22:48:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-01-08 18:49:49 +01:00
|
|
|
name = "cryptsetup-1.6.3";
|
2012-08-10 22:42:29 +02:00
|
|
|
|
2009-03-01 12:11:21 +01:00
|
|
|
src = fetchurl {
|
2011-12-28 22:48:58 +01:00
|
|
|
url = "http://cryptsetup.googlecode.com/files/${name}.tar.bz2";
|
2014-01-08 18:49:49 +01:00
|
|
|
sha256 = "1n1qk5chyjspbiianrdb55fhb4wl0vfyqz2br05vfb24v4qlgbx2";
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
|
2013-06-24 09:23:44 +02:00
|
|
|
configureFlags = [ "--enable-cryptsetup-reencrypt" ]
|
|
|
|
++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 22:42:29 +02:00
|
|
|
|
2013-06-24 09:23:44 +02:00
|
|
|
buildInputs = [ devicemapper libgcrypt libuuid pkgconfig popt ]
|
|
|
|
++ stdenv.lib.optional enablePython python;
|
2009-03-01 12:11:21 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://code.google.com/p/cryptsetup/;
|
|
|
|
description = "LUKS for dm-crypt";
|
|
|
|
license = "GPLv2";
|
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
|
|
|
};
|
|
|
|
}
|