2011-12-11 20:39:12 +01:00
|
|
|
{stdenv, fetchurl, libuuid, popt, devicemapper, libgcrypt }:
|
2009-03-01 12:11:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-12-11 20:39:12 +01:00
|
|
|
name = "cryptsetup-1.4.1";
|
2009-03-01 12:11:21 +01:00
|
|
|
src = fetchurl {
|
2011-12-11 20:39:12 +01:00
|
|
|
url = http://cryptsetup.googlecode.com/files/cryptsetup-1.4.1.tar.bz2;
|
|
|
|
sha256 = "82b143328c2b427ef2b89fb76c701d311c95b54093c21bbf22342f7b393bddcb";
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
|
2011-12-11 20:39:12 +01:00
|
|
|
buildInputs = [ libuuid popt devicemapper libgcrypt ];
|
2009-03-01 12:11:21 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://code.google.com/p/cryptsetup/;
|
|
|
|
description = "LUKS for dm-crypt";
|
|
|
|
license = "GPLv2";
|
2009-09-20 11:37:55 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 12:11:21 +01:00
|
|
|
};
|
|
|
|
}
|