ocamlPackages.piaf: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 12:08:52 -06:00
parent 374e7c1093
commit 4cfc8d97a8
@@ -21,12 +21,12 @@
eio_main,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "piaf";
version = "0.2.0";
src = fetchurl {
url = "https://github.com/anmonteiro/piaf/releases/download/${version}/piaf-${version}.tbz";
url = "https://github.com/anmonteiro/piaf/releases/download/${finalAttrs.version}/piaf-${finalAttrs.version}.tbz";
hash = "sha256-B/qQCaUvrqrm2GEW51AH9SebGFx7x8laq5RV8hBzcPs=";
};
@@ -60,4 +60,4 @@ buildDunePackage rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ anmonteiro ];
};
}
})