ocamlPackages.merlin-extend: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 10:14:26 -06:00
parent 183709c846
commit 4dc8306600
@@ -5,12 +5,12 @@
cppo,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "merlin-extend";
version = "0.6.2";
src = fetchurl {
url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-${version}.tbz";
url = "https://github.com/let-def/merlin-extend/releases/download/v${finalAttrs.version}/merlin-extend-${finalAttrs.version}.tbz";
hash = "sha256-R1WOfzC2RGLyucgvt/eHEzrPoNUTJFK2rXhI4LD013k=";
};
@@ -22,4 +22,4 @@ buildDunePackage rec {
license = lib.licenses.mit;
maintainers = [ ];
};
}
})