ocamlPackages.uuidm: fix for OCaml 5.0

This commit is contained in:
Vincent Laporte 2023-05-30 17:05:44 +02:00
parent 93ebabefb2
commit 76a1f69525
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

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