Unverified Commit 1453647d authored by Silvan Mosberger's avatar Silvan Mosberger Committed by Markus Theil
Browse files

openssl: Add missing comments for patches

Markus Theil: Changed reference to NIX_SSL_CERT_FILE commit
parent 96e5424f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -375,12 +375,15 @@ in
    hash = "sha256-39135OobV/86bb3msL3D8x21rJnn/dTq+eH7tuwtuM4=";

    patches = [
      # Support for NIX_SSL_CERT_FILE, motivation:
      # https://github.com/NixOS/nixpkgs/commit/942dbf89c6120cb5b52fb2ab456855d1fbf2994e
      ./3.0/nix-ssl-cert-file.patch

      # openssl will only compile in KTLS if the current kernel supports it.
      # This patch disables build-time detection.
      ./3.0/openssl-disable-kernel-detection.patch

      # Look up SSL certificates in /etc rather than the immutable installation directory
      (
        if stdenv.hostPlatform.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch
      )
@@ -398,12 +401,15 @@ in
    hash = "sha256-xTpH5eRByTDDkoz3v2+wDl0Sm2MOCqhzsIJYZW5zRew=";

    patches = [
      # Support for NIX_SSL_CERT_FILE, motivation:
      # https://github.com/NixOS/nixpkgs/commit/942dbf89c6120cb5b52fb2ab456855d1fbf2994e
      ./3.0/nix-ssl-cert-file.patch

      # openssl will only compile in KTLS if the current kernel supports it.
      # This patch disables build-time detection.
      ./3.0/openssl-disable-kernel-detection.patch

      # Look up SSL certificates in /etc rather than the immutable installation directory
      (
        if stdenv.hostPlatform.isDarwin then
          ./3.5/use-etc-ssl-certs-darwin.patch