2012-05-14 22:27:55 +02: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 {
|
2012-05-14 22:27:55 +02:00
|
|
|
name = "cryptsetup-1.4.2";
|
|
|
|
|
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";
|
2012-05-14 22:27:55 +02:00
|
|
|
sha256 = "1ryzc36wfbfqi69c3xzx2x6jr7l5xp7xwip4s9jkyjyj35xhvs0z";
|
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
|
|
|
};
|
|
|
|
}
|