summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-07-10 01:06:24 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-07-10 10:26:14 +0200
commit69db5f5ad7c9550f4476555498035b126d3c33e7 (patch)
tree509c55cae8ebc6004019331e42c4c37d742bb34e /pkgs/development
parent19146cefa10f485924c01db2e5f8d19b6243ece1 (diff)
downloadnixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.tar
nixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.tar.gz
nixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.tar.bz2
nixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.tar.lz
nixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.tar.xz
nixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.tar.zst
nixlib-69db5f5ad7c9550f4476555498035b126d3c33e7.zip
mbedtls: 1.3.16 -> 2.3.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/mbedtls/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mbedtls/default.nix b/pkgs/development/libraries/mbedtls/default.nix
index ef0caed69d7e..b7d6fb25ecc2 100644
--- a/pkgs/development/libraries/mbedtls/default.nix
+++ b/pkgs/development/libraries/mbedtls/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, perl }:
 
 stdenv.mkDerivation rec {
-  name = "mbedtls-1.3.16";
+  name = "mbedtls-2.3.0";
 
   src = fetchurl {
-    url = "https://polarssl.org/download/${name}-gpl.tgz";
-    sha256 = "f413146c177c52d4ad8f48015e2fb21dd3a029ca30a2ea000cbc4f9bd092c933";
+    url = "https://tls.mbed.org/download/${name}-gpl.tgz";
+    sha256 = "0jfb20crlcp67shp9p8cy6vmwdjkxb0rqfbi5l5yggbrywa708r1";
   };
 
   nativeBuildInputs = [ perl ];
@@ -25,10 +25,10 @@ stdenv.mkDerivation rec {
   doCheck = true;
 
   meta = with stdenv.lib; {
-    homepage = https://polarssl.org/;
+    homepage = https://tls.mbed.org/;
     description = "Portable cryptographic and SSL/TLS library, aka polarssl";
     license = licenses.gpl3;
     platforms = platforms.all;
-    maintainers = with maintainers; [ wkennington ];
+    maintainers = with maintainers; [ wkennington fpletz ];
   };
 }