hyperscan: fix build

fix-hyperscan
Izorkin 2022-01-05 15:28:43 +02:00
parent 412d1a9851
commit fd75a7afb8
1 changed files with 10 additions and 0 deletions

View File

@ -16,6 +16,16 @@
pkgs.nginxModules.modsecurity-nginx
];
};
hyperscan = super.hyperscan.overrideDerivation (oldAttr: {
patches = [
(super.fetchpatch {
# part of https://github.com/intel/hyperscan/pull/336
url = "https://github.com/intel/hyperscan/commit/e2c4010b1fc1272cab816ba543940b3586e68a0c.patch";
sha256 = "sha256-doVNwROL6MTcgOW8jBwGTnxe0zvxjawiob/g6AvXLak=";
})
];
});
})
];
}