2012-08-10 22:42:29 +02:00
|
|
|
{ stdenv, fetchurl, devicemapper, libgcrypt, libuuid, pkgconfig, popt }:
|
2009-03-01 12:11:21 +01:00
|
|
|
|
2011-12-28 22:48:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-10 22:42:29 +02:00
|
|
|
name = "cryptsetup-1.5.0";
|
|
|
|
|
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-08-10 22:42:29 +02:00
|
|
|
sha256 = "1l7qcmaq092k28k8sbw845hs6jwn0f05h68rmb7iwh52232m8wa0";
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
|
2012-08-10 22:42:29 +02:00
|
|
|
configureFlags = "--enable-cryptsetup-reencrypt";
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|