ocamlPackages.happy-eyeballs: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-22 10:13:48 -06:00
parent df88aab50e
commit 2b27ea54ea
@@ -9,14 +9,14 @@
logs,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "happy-eyeballs";
version = "2.0.1";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/roburio/happy-eyeballs/releases/download/v${version}/happy-eyeballs-${version}.tbz";
url = "https://github.com/roburio/happy-eyeballs/releases/download/v${finalAttrs.version}/happy-eyeballs-${finalAttrs.version}.tbz";
hash = "sha256-slVFiDApMbqF4Yhh5hCjraeCNJbU1JoZXpU1VsNR0mk=";
};
@@ -37,4 +37,4 @@ buildDunePackage rec {
ulrikstrid
];
};
}
})