2018-06-18 23:47:16 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, devicemapper, json_c, openssl, libuuid, pkgconfig, popt
|
2018-06-15 23:20:53 +00:00
|
|
|
, enablePython ? false, python2 ? null }:
|
2013-06-24 07:23:44 +00:00
|
|
|
|
2016-11-18 08:45:41 +00:00
|
|
|
assert enablePython -> python2 != null;
|
2009-03-01 11:11:21 +00:00
|
|
|
|
2011-12-28 21:48:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-18 23:47:16 +00:00
|
|
|
name = "cryptsetup-2.0.3";
|
2012-08-10 20:42:29 +00:00
|
|
|
|
2009-03-01 11:11:21 +00:00
|
|
|
src = fetchurl {
|
2018-04-03 11:25:13 +00:00
|
|
|
url = "mirror://kernel/linux/utils/cryptsetup/v2.0/${name}.tar.xz";
|
2018-06-18 23:47:16 +00:00
|
|
|
sha256 = "1m01wl8njjraz69fsk97l3nqfc32nbpr1la5s1l4mzzmq42clv2d";
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
|
2018-06-18 23:47:16 +00:00
|
|
|
patches = [
|
|
|
|
# NOTE: Patch to support LibreSSL-2.7. It is from upstream, and can be removed when cryptsetup is next updated.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.com/cryptsetup/cryptsetup/commit/5fcf430c8105fbeeb07a8cacbae84f941d2a3d55.patch";
|
|
|
|
sha256 = "1d3ycsqszq0frlv9r7kmfdfmnk4qa4b4mv25iivmayvpgc8yja7m";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-06-15 23:20:53 +00:00
|
|
|
NIX_LDFLAGS = "-lgcc_s";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-kernel_crypto"
|
|
|
|
"--enable-cryptsetup-reencrypt"
|
|
|
|
"--with-crypto_backend=openssl"
|
|
|
|
] ++ stdenv.lib.optional enablePython "--enable-python";
|
2012-08-10 20:42:29 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-04-03 11:25:13 +00:00
|
|
|
buildInputs = [ devicemapper json_c openssl libuuid popt ]
|
2018-06-15 23:20:53 +00:00
|
|
|
++ stdenv.lib.optional enablePython python2;
|
2009-03-01 11:11:21 +00:00
|
|
|
|
|
|
|
meta = {
|
2016-07-03 19:27:01 +00:00
|
|
|
homepage = https://gitlab.com/cryptsetup/cryptsetup/;
|
2009-03-01 11:11:21 +00:00
|
|
|
description = "LUKS for dm-crypt";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-12-28 21:48:58 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric chaoflow ];
|
2009-09-20 09:37:55 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-03-01 11:11:21 +00:00
|
|
|
};
|
|
|
|
}
|