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

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, cmake
, ninja
, perl # Project uses Perl for scripting and testing
2018-11-22 13:08:30 +01:00
, python
, enableThreading ? true # Threading can be disabled to increase security https://tls.mbed.org/kb/development/thread-safety-and-multi-threading
}:
2015-04-06 23:41:54 +02:00
stdenv.mkDerivation rec {
name = "mbedtls-${version}";
version = "2.17.0";
2015-04-06 23:41:54 +02:00
2018-01-28 02:10:04 +01:00
src = fetchFromGitHub {
owner = "ARMmbed";
repo = "mbedtls";
rev = name;
sha256 = "1mk3xv61wvqqrzd6jnrz8csyfnwwwwpjzywj3fsfy99p51d7wqgw";
2015-04-06 23:41:54 +02:00
};
2018-11-22 13:08:30 +01:00
nativeBuildInputs = [ cmake ninja perl python ];
postConfigure = stdenv.lib.optionals 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=on" ];
2015-04-06 23:41:54 +02:00
meta = with stdenv.lib; {
2016-07-10 01:06:24 +02:00
homepage = https://tls.mbed.org/;
description = "Portable cryptographic and TLS library, formerly known as PolarSSL";
license = licenses.asl20;
2015-04-06 23:41:54 +02:00
platforms = platforms.all;
maintainers = with maintainers; [ fpletz ];
2015-04-06 23:41:54 +02:00
};
}