about summary refs log tree commit diff
path: root/pkgs/development/libraries/mbedtls/3.nix
blob: abba77308a61c227a782532f605bb9071f881dbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ callPackage, fetchpatch }:

callPackage ./generic.nix {
  version = "3.5.2";
  hash = "sha256-lVGmnSYccNmRS6vfF/fDiny5cYRPc/wJBpgciFLPUvM=";

  patches = [
    (fetchpatch {
      name = "CVE-2024-28755.patch";
      url = "https://github.com/Mbed-TLS/mbedtls/commit/ad736991bb59211118a29fe115367c24495300c2.patch";
      hash = "sha256-MUnGT2ptlBikpZYL6+cvoF7fOiD2vMK4cbkgevgyl60=";
    })
  ];
}