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

30 lines
970 B
Nix
Raw Normal View History

2018-04-03 13:25:13 +02:00
{ stdenv, fetchurl, devicemapper, json_c, openssl, libuuid, pkgconfig, popt
2016-11-18 09:45:41 +01:00
, enablePython ? false, python2 ? null
}:
2016-11-18 09:45:41 +01:00
assert enablePython -> python2 != null;
stdenv.mkDerivation rec {
2018-04-03 13:25:13 +02:00
name = "cryptsetup-2.0.2";
2012-08-10 22:42:29 +02:00
src = fetchurl {
2018-04-03 13:25:13 +02:00
url = "mirror://kernel/linux/utils/cryptsetup/v2.0/${name}.tar.xz";
sha256 = "15wyjfgcqjf0wy5gxnmjj8aah33csv5v6n1hv9c8sxdzygbhb0ag";
};
configureFlags = [ "--enable-cryptsetup-reencrypt" "--with-crypto_backend=openssl" ]
++ stdenv.lib.optional enablePython "--enable-python";
2012-08-10 22:42:29 +02:00
nativeBuildInputs = [ pkgconfig ];
2018-04-03 13:25:13 +02:00
buildInputs = [ devicemapper json_c openssl libuuid popt ]
2016-11-18 09:45:41 +01:00
++ stdenv.lib.optional enablePython python2;
meta = {
homepage = https://gitlab.com/cryptsetup/cryptsetup/;
description = "LUKS for dm-crypt";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
platforms = with stdenv.lib.platforms; linux;
};
}