forked from mirrors/nixpkgs
Adding LUKS cryptsetup for the devicemapper.
svn path=/nixpkgs/trunk/; revision=14289
This commit is contained in:
parent
67cbb2c3fb
commit
247ad8bfcf
23
pkgs/os-specific/linux/cryptsetup/default.nix
Normal file
23
pkgs/os-specific/linux/cryptsetup/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue