b785a7192e
This again is only optional to avoid too much dependencies when bootstrapping small systems or when constrained to RAM disks of lower size. It is needed for blivet as well, which will override the option in its dependency list. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
29 lines
871 B
Nix
29 lines
871 B
Nix
{ stdenv, fetchurl, devicemapper, libgcrypt, libuuid, pkgconfig, popt
|
|
, enablePython ? false, python ? null
|
|
}:
|
|
|
|
assert enablePython -> python != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cryptsetup-1.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://cryptsetup.googlecode.com/files/${name}.tar.bz2";
|
|
sha256 = "0dib3nw6ifd7d7hr9k4iyaha3hz0pkzairqa38l3fndkr9w3zlhn";
|
|
};
|
|
|
|
configureFlags = [ "--enable-cryptsetup-reencrypt" ]
|
|
++ stdenv.lib.optional enablePython "--enable-python";
|
|
|
|
buildInputs = [ devicemapper libgcrypt libuuid pkgconfig popt ]
|
|
++ stdenv.lib.optional enablePython python;
|
|
|
|
meta = {
|
|
homepage = http://code.google.com/p/cryptsetup/;
|
|
description = "LUKS for dm-crypt";
|
|
license = "GPLv2";
|
|
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|