ocamlPackages.melange-json: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:36:49 -05:00
parent cbf5b74112
commit 3e3ca38c83
@@ -7,13 +7,13 @@
ppxlib,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "melange-json";
version = "2.0.0";
src = fetchFromGitHub {
owner = "melange-community";
repo = "melange-json";
tag = version;
tag = finalAttrs.version;
hash = "sha256-vgcvPRc2vEHE1AtHyttvs1T0LcoeTOFfmPUCz95goT0=";
};
@@ -29,4 +29,4 @@ buildDunePackage rec {
lib.maintainers.vog
];
};
}
})