ocamlPackages.dolmen: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-21 19:29:09 -06:00
parent b8c3bc93ad
commit 0469a26ef4
@@ -9,14 +9,14 @@
qcheck,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "dolmen";
version = "0.10";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/Gbury/dolmen/releases/download/v${version}/dolmen-${version}.tbz";
url = "https://github.com/Gbury/dolmen/releases/download/v${finalAttrs.version}/dolmen-${finalAttrs.version}.tbz";
hash = "sha256-xchfd+OSTzeOjYLxZu7+QTG04EG/nN7KRnQQ8zxx+mE=";
};
@@ -37,4 +37,4 @@ buildDunePackage rec {
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/Gbury/dolmen";
};
}
})