ocamlPackages.prettym: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 12:09:07 -06:00
parent 2576582185
commit 53fd02e077
@@ -12,12 +12,12 @@
ptime,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "prettym";
version = "0.0.3";
src = fetchurl {
url = "https://github.com/dinosaure/prettym/releases/download/${version}/prettym-${version}.tbz";
url = "https://github.com/dinosaure/prettym/releases/download/${finalAttrs.version}/prettym-${finalAttrs.version}.tbz";
hash = "sha256-kXDxoRref02YpYSlvlK7a5FBX5ccbnWJQzG0axi5jwk=";
};
@@ -45,4 +45,4 @@ buildDunePackage rec {
homepage = "https://github.com/dinosaure/prettym";
maintainers = [ ];
};
}
})