Adding LUKS cryptsetup for the devicemapper.

svn path=/nixpkgs/trunk/; revision=14289
This commit is contained in:
Lluís Batlle i Rossell 2009-03-01 11:11:21 +00:00
parent 67cbb2c3fb
commit 247ad8bfcf
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, e2fsprogs, popt, devicemapper, udev }:
stdenv.mkDerivation {
name = "cryptsetup-1.0.6";
src = fetchurl {
url = http://cryptsetup.googlecode.com/files/cryptsetup-1.0.6.tar.bz2;
sha256 = "df7fda80cfa01f063caf39140287a47d018dfe056fc71a3ba605e690ff0183fd";
};
configureFlags = [ "--enable-libdevmapper" ];
patchPhase = ''
sed -i -e 's@/sbin/udevsettle@${udev}/sbin/udevsettle@' lib/libdevmapper.c
'';
buildInputs = [ e2fsprogs popt devicemapper ];
meta = {
homepage = http://code.google.com/p/cryptsetup/;
description = "LUKS for dm-crypt";
license = "GPLv2";
};
}

View file

@ -6519,6 +6519,10 @@ let
inherit fetchurl stdenv zlibStatic;
};
cryptsetup = import ../os-specific/linux/cryptsetup {
inherit stdenv fetchurl e2fsprogs popt devicemapper udev;
};
cramfsswap = import ../os-specific/linux/cramfsswap {
inherit fetchurl stdenv zlib;
};