Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 13 lines 377 B view raw
1{ callPackage, fetchpatch, ... }@args: 2 3callPackage ./generic.nix args { 4 version = "1.28.0"; 5 hash = "sha256-xrXGsIbA3508o/9eCEwdDvkJ5gOCecccHD6YX1dv92o="; 6 extraPatches = [ 7 (fetchpatch { 8 name = "CVE-2025-53859.patch"; 9 url = "https://nginx.org/download/patch.2025.smtp.txt"; 10 hash = "sha256-v49sLskFNMoKuG8HQISw8ST7ga6DS+ngJiL0D3sUyGk="; 11 }) 12 ]; 13}