Merge pull request #235016 from vbgl/ocaml-uuidm-fix-for-5.0

ocamlPackages.uuidm: fix for OCaml 5.0
This commit is contained in:
Ulrik Strid 2023-05-31 11:12:22 +02:00 committed by GitHub
commit aeb0d80c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "sha256-/GZbkJVDQu1UY8SliK282kUWAVMfOnpQadUlRT/tJrM=";
};
postPatch = ''
substituteInPlace pkg/META --replace "bytes" ""
'';
strictDeps = true;
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];