ocamlPackages.bitstring: use Dune 3

This commit is contained in:
Vincent Laporte 2023-05-02 06:08:12 +02:00
parent cdfa6c7e80
commit 1b988d864e
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,7 @@ buildDunePackage rec {
pname = "bitstring";
version = "4.1.0";
useDune2 = true;
duneVersion = "3";
src = fetchFromGitHub {
owner = "xguerin";

View file

@ -9,7 +9,9 @@ else
buildDunePackage rec {
pname = "ppx_bitstring";
inherit (bitstring) version useDune2 src;
inherit (bitstring) version src;
duneVersion = "3";
buildInputs = [ bitstring ppxlib ];