2011-12-28 22:48:58 +01:00
|
|
|
{stdenv, fetchurl, devicemapper, libgcrypt, libuuid, pkgconfig, popt, udev }:
|
2009-03-01 12:11:21 +01:00
|
|
|
|
2011-12-28 22:48:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cryptsetup-1.4.1";
|
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";
|
|
|
|
sha256 = "82b143328c2b427ef2b89fb76c701d311c95b54093c21bbf22342f7b393bddcb";
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
|
2011-12-28 22:48:58 +01:00
|
|
|
buildInputs = [ devicemapper libgcrypt libuuid pkgconfig popt ];
|
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
|
|
|
};
|
|
|
|
}
|