ocamlPackages.octavius: use Dune 3

This commit is contained in:
Vincent Laporte 2024-04-11 09:47:36 +02:00
parent 5380bb424c
commit 41493b10d7
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml }:
{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage (rec {
buildDunePackage rec {
pname = "octavius";
version = "1.2.2";
@ -21,6 +21,4 @@ buildDunePackage (rec {
license = licenses.isc;
maintainers = with maintainers; [ vbgl ];
};
} // lib.optionalAttrs (!lib.versionAtLeast ocaml.version "4.08") {
duneVersion = "1";
})
}