ocamlPackages.callipyge: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-31 14:37:03 +00:00
parent bc2ca8c3f6
commit 52f246f902
@@ -7,12 +7,12 @@
fmt,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "callipyge";
version = "0.2";
src = fetchurl {
url = "https://github.com/oklm-wsh/Callipyge/releases/download/v${version}/${pname}-${version}.tbz";
url = "https://github.com/oklm-wsh/Callipyge/releases/download/v${finalAttrs.version}/callipyge-${finalAttrs.version}.tbz";
hash = "sha256-T/94a88xvK51TggjXecdKc9kyTE9aIyueIt5T24sZB0=";
};
@@ -34,4 +34,4 @@ buildDunePackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fufexan ];
};
}
})