ocamlPackages.ppx_tools_versioned: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 12:09:04 -06:00
parent 3e687038c3
commit b290b7eafa
@@ -5,7 +5,7 @@
ocaml-migrate-parsetree,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "ppx_tools_versioned";
version = "5.4.0";
@@ -13,8 +13,8 @@ buildDunePackage rec {
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = pname;
rev = version;
repo = "ppx_tools_versioned";
rev = finalAttrs.version;
sha256 = "07lnj4yzwvwyh5fhpp1dxrys4ddih15jhgqjn59pmgxinbnddi66";
};
@@ -26,4 +26,4 @@ buildDunePackage rec {
license = lib.licenses.gpl2;
maintainers = [ ];
};
}
})