ocamlPackages.hpack: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:36:33 -05:00
parent d40c18f311
commit 2263370179
@@ -6,12 +6,12 @@
faraday,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "hpack";
version = "0.13.0";
src = fetchurl {
url = "https://github.com/anmonteiro/ocaml-h2/releases/download/${version}/h2-${version}.tbz";
url = "https://github.com/anmonteiro/ocaml-h2/releases/download/${finalAttrs.version}/h2-${finalAttrs.version}.tbz";
hash = "sha256-DYm28XgXUpTnogciO+gdW4P8Mbl1Sb7DTwQyo7KoBw8=";
};
@@ -34,4 +34,4 @@ buildDunePackage rec {
anmonteiro
];
};
}
})