ocamlPackages.gluten: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 10:13:44 -06:00
parent a1e2a3b104
commit a06da2fa62
@@ -6,12 +6,12 @@
lib,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "gluten";
version = "0.5.2";
src = fetchurl {
url = "https://github.com/anmonteiro/gluten/releases/download/${version}/gluten-${version}.tbz";
url = "https://github.com/anmonteiro/gluten/releases/download/${finalAttrs.version}/gluten-${finalAttrs.version}.tbz";
hash = "sha256-se7Yn59ggLtL0onMjSUsa88B8D05Vybmb6YGcgfnAV8=";
};
@@ -30,4 +30,4 @@ buildDunePackage rec {
homepage = "https://github.com/anmonteiro/gluten";
maintainers = with lib.maintainers; [ anmonteiro ];
};
}
})