mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
920 B
Nix
29 lines
920 B
Nix
{ stdenv, fetchurl, devicemapper, openssl, libuuid, pkgconfig, popt
|
|
, enablePython ? false, python ? null
|
|
}:
|
|
|
|
assert enablePython -> python != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cryptsetup-1.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v1.7/${name}.tar.xz";
|
|
sha256 = "0j6iwf64pdrl4nm5ypc2r33b3k0aflb939wz2496vcqdrjkj8m87";
|
|
};
|
|
|
|
configureFlags = [ "--enable-cryptsetup-reencrypt" "--with-crypto_backend=openssl" ]
|
|
++ stdenv.lib.optional enablePython "--enable-python";
|
|
|
|
buildInputs = [ devicemapper openssl libuuid pkgconfig popt ]
|
|
++ stdenv.lib.optional enablePython python;
|
|
|
|
meta = {
|
|
homepage = http://code.google.com/p/cryptsetup/;
|
|
description = "LUKS for dm-crypt";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|