nixpkgs/pkgs/development/libraries/mbedtls/generic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, version
, hash
, fetchFromGitHub
, cmake
, ninja
, perl # Project uses Perl for scripting and testing
2021-03-26 09:51:06 +00:00
, python3
, enableThreading ? true # Threading can be disabled to increase security https://tls.mbed.org/kb/development/thread-safety-and-multi-threading
}:
2015-04-06 21:41:54 +00:00
stdenv.mkDerivation rec {
pname = "mbedtls";
inherit version;
2015-04-06 21:41:54 +00:00
2018-01-28 01:10:04 +00:00
src = fetchFromGitHub {
owner = "Mbed-TLS";
2018-01-28 01:10:04 +00:00
repo = "mbedtls";
rev = "${pname}-${version}";
inherit hash;
2015-04-06 21:41:54 +00:00
};
2021-03-26 09:51:06 +00:00
nativeBuildInputs = [ cmake ninja perl python3 ];
strictDeps = true;
postConfigure = lib.optionalString enableThreading ''
perl scripts/config.pl set MBEDTLS_THREADING_C # Threading abstraction layer
perl scripts/config.pl set MBEDTLS_THREADING_PTHREAD # POSIX thread wrapper layer for the threading layer.
'';
cmakeFlags = [
"-DUSE_SHARED_MBEDTLS_LIBRARY=${if stdenv.hostPlatform.isStatic then "off" else "on"}"
# Avoid a dependency on jsonschema and jinja2 by not generating source code
# using python. In releases, these generated files are already present in
# the repository and do not need to be regenerated. See:
# https://github.com/Mbed-TLS/mbedtls/releases/tag/v3.3.0 below "Requirement changes".
"-DGEN_FILES=off"
2021-04-18 23:52:18 +00:00
];
2015-04-06 21:41:54 +00:00
2023-08-06 10:22:57 +00:00
doCheck = true;
# Parallel checking causes test failures
# https://github.com/Mbed-TLS/mbedtls/issues/4980
enableParallelChecking = false;
meta = with lib; {
homepage = "https://www.trustedfirmware.org/projects/mbed-tls/";
changelog = "https://github.com/Mbed-TLS/mbedtls/blob/${pname}-${version}/ChangeLog";
description = "Portable cryptographic and TLS library, formerly known as PolarSSL";
license = [ licenses.asl20 /* or */ licenses.gpl2Plus ];
2015-04-06 21:41:54 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ raphaelr ];
2015-04-06 21:41:54 +00:00
};
}