ocamlPackages.extlib: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-31 14:40:19 +00:00
parent 6f4e70970e
commit 5b644b9106
@@ -5,12 +5,12 @@
cppo,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "extlib";
version = "1.8.0";
src = fetchurl {
url = "https://github.com/ygrek/ocaml-extlib/releases/download/${version}/extlib-${version}.tar.gz";
url = "https://github.com/ygrek/ocaml-extlib/releases/download/${finalAttrs.version}/extlib-${finalAttrs.version}.tar.gz";
hash = "sha256-lkJ38AEoCo7d/AjgcB1Zygxr3F0FIxOz5A5QiPbUXXA=";
};
@@ -24,4 +24,4 @@ buildDunePackage rec {
license = lib.licenses.lgpl21Only;
maintainers = [ lib.maintainers.sternenseemann ];
};
}
})