ocamlPackages.httpaf: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:36:33 -05:00
parent 2263370179
commit 208141a6f1
@@ -8,7 +8,7 @@
alcotest,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "httpaf";
version = "0.7.1";
@@ -16,8 +16,8 @@ buildDunePackage rec {
src = fetchFromGitHub {
owner = "inhabitedtype";
repo = pname;
rev = version;
repo = "httpaf";
rev = finalAttrs.version;
sha256 = "0zk78af3qyvf6w66mg8sxygr6ndayzqw5s3zfxibvn121xwni26z";
};
@@ -33,6 +33,6 @@ buildDunePackage rec {
description = "High-performance, memory-efficient, and scalable web server for OCaml";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
inherit (finalAttrs.src.meta) homepage;
};
}
})