ocamlPackages.uring: add patch for musl 1.2.5

This commit is contained in:
Alyssa Ross 2024-04-29 11:00:37 +02:00 committed by Vincent Laporte
parent 2fba83b917
commit 9b7c1fdca4

View file

@ -3,6 +3,7 @@
, cstruct
, dune-configurator
, fetchurl
, fetchpatch
, fmt
, optint
, mdx
@ -19,6 +20,14 @@ buildDunePackage rec {
hash = "sha256-4OGst19vqEzuNVxO5xxtzS+mEilEBFoEc7lC3j3sTk4=";
};
patches = [
(fetchpatch {
name = "musl-1.2.5.patch";
url = "https://github.com/ocaml-multicore/ocaml-uring/commit/abe340086574c124061434054937d1f19ee6bb71.patch";
hash = "sha256-J4ZQAdQZ9fhT3/vAh5FYMyvMllTowe4GyHJy5RGUTv0=";
})
];
propagatedBuildInputs = [
cstruct
fmt