ba935dcbc0
svn path=/nixpkgs/trunk/; revision=30839
20 lines
591 B
Nix
20 lines
591 B
Nix
{stdenv, fetchurl, libuuid, popt, devicemapper, libgcrypt }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cryptsetup-1.4.1";
|
|
src = fetchurl {
|
|
url = http://cryptsetup.googlecode.com/files/cryptsetup-1.4.1.tar.bz2;
|
|
sha256 = "82b143328c2b427ef2b89fb76c701d311c95b54093c21bbf22342f7b393bddcb";
|
|
};
|
|
|
|
buildInputs = [ libuuid popt devicemapper libgcrypt ];
|
|
|
|
meta = {
|
|
homepage = http://code.google.com/p/cryptsetup/;
|
|
description = "LUKS for dm-crypt";
|
|
license = "GPLv2";
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|