nixpkgs/pkgs/os-specific/linux/cryptsetup/default.nix

23 lines
663 B
Nix
Raw Normal View History

2012-08-10 20:42:29 +00:00
{ stdenv, fetchurl, devicemapper, libgcrypt, libuuid, pkgconfig, popt }:
stdenv.mkDerivation rec {
2013-01-08 14:36:31 +00:00
name = "cryptsetup-1.5.1";
2012-08-10 20:42:29 +00:00
src = fetchurl {
url = "http://cryptsetup.googlecode.com/files/${name}.tar.bz2";
2013-01-08 14:36:31 +00:00
sha256 = "0dib3nw6ifd7d7hr9k4iyaha3hz0pkzairqa38l3fndkr9w3zlhn";
};
2012-08-10 20:42:29 +00:00
configureFlags = "--enable-cryptsetup-reencrypt";
buildInputs = [ devicemapper libgcrypt libuuid pkgconfig popt ];
meta = {
homepage = http://code.google.com/p/cryptsetup/;
description = "LUKS for dm-crypt";
license = "GPLv2";
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
platforms = with stdenv.lib.platforms; linux;
};
}