Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
488 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
dns-client-mirage,
mimic,
happy-eyeballs-mirage,
}:
buildDunePackage {
pname = "mimic-happy-eyeballs";
inherit (mimic) src version;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
dns-client-mirage
mimic
happy-eyeballs-mirage
];
doCheck = false;
meta = {
description = "Happy-eyeballs integration into mimic";
maintainers = [ lib.maintainers.ulrikstrid ];
inherit (mimic.meta) license homepage;
};
}