Skip to content

Commit f4a5f01

Browse files
rustls-ffi: 0.13.0 -> 0.14.1 (#352584)
2 parents a056552 + b5dea63 commit f4a5f01

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

pkgs/by-name/ru/rustls-ffi/package.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@
1515

1616
stdenv.mkDerivation (finalAttrs: {
1717
pname = "rustls-ffi";
18-
version = "0.13.0";
18+
version = "0.14.1";
1919

2020
src = fetchFromGitHub {
2121
owner = "rustls";
2222
repo = "rustls-ffi";
2323
rev = "v${finalAttrs.version}";
24-
hash = "sha256-Bc9bVZ2pDsG118l/SlElZpgh9F1JEgPF8LzBX7d4mhE=";
24+
hash = "sha256-ZKAyKcKwhnPE6PrfBFjLJKkTlGbdLcmW1EP/xSv2cpM=";
2525
};
2626

2727
cargoDeps = rustPlatform.fetchCargoTarball {
2828
src = finalAttrs.src;
2929
name = "${finalAttrs.pname}-${finalAttrs.version}";
30-
hash = "sha256-gDQ9AFrJuV7SrzKCAHQBkKj6clXuPLO0DHhnvcBqRLs=";
30+
hash = "sha256-IaOhQfDEgLhGmes0xzhLVym29aP691TY0EXdOIgXEMA=";
3131
};
3232

3333
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
@@ -54,7 +54,6 @@ stdenv.mkDerivation (finalAttrs: {
5454

5555
passthru.tests = {
5656
curl = curl.override { opensslSupport = false; rustlsSupport = true; rustls-ffi = finalAttrs.finalPackage; };
57-
apacheHttpd = apacheHttpd.override { modTlsSupport = true; rustls-ffi = finalAttrs.finalPackage; };
5857
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
5958
};
6059

pkgs/servers/http/apache-httpd/2.4.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
, nixosTests
33
, proxySupport ? true
44
, sslSupport ? true, openssl
5-
, modTlsSupport ? false, rustls-ffi, Foundation
65
, http2Support ? true, nghttp2
76
, ldapSupport ? true, openldap
87
, libxml2Support ? true, libxml2
@@ -40,8 +39,6 @@ stdenv.mkDerivation rec {
4039
buildInputs = [ perl libxcrypt zlib ] ++
4140
lib.optional brotliSupport brotli ++
4241
lib.optional sslSupport openssl ++
43-
lib.optional modTlsSupport rustls-ffi ++
44-
lib.optional (modTlsSupport && stdenv.hostPlatform.isDarwin) Foundation ++
4542
lib.optional ldapSupport openldap ++ # there is no --with-ldap flag
4643
lib.optional libxml2Support libxml2 ++
4744
lib.optional http2Support nghttp2 ++
@@ -70,7 +67,6 @@ stdenv.mkDerivation rec {
7067
"--includedir=${placeholder "dev"}/include"
7168
(lib.enableFeature proxySupport "proxy")
7269
(lib.enableFeature sslSupport "ssl")
73-
(lib.enableFeature modTlsSupport "tls")
7470
(lib.withFeatureAs libxml2Support "libxml2" "${libxml2.dev}/include/libxml2")
7571
"--docdir=$(doc)/share/doc"
7672

pkgs/top-level/all-packages.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11514,9 +11514,7 @@ with pkgs;
1151411514

1151511515
alerta-server = callPackage ../servers/monitoring/alerta { };
1151611516

11517-
apacheHttpd_2_4 = callPackage ../servers/http/apache-httpd/2.4.nix {
11518-
inherit (darwin.apple_sdk.frameworks) Foundation;
11519-
};
11517+
apacheHttpd_2_4 = callPackage ../servers/http/apache-httpd/2.4.nix { };
1152011518
apacheHttpd = apacheHttpd_2_4;
1152111519

1152211520
apacheHttpdPackagesFor = apacheHttpd: self: let callPackage = newScope self; in {

0 commit comments

Comments
 (0)