ocamlPackages.ppx_derivers: use Dune 3

This commit is contained in:
Vincent Laporte 2024-04-11 09:56:05 +02:00
parent 41493b10d7
commit 8d5f73b543
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 = "ppx_derivers";
version = "1.2.1";
@ -19,6 +19,4 @@ buildDunePackage (rec {
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
} // lib.optionalAttrs (!lib.versionAtLeast ocaml.version "4.08") {
duneVersion = "1";
})
}