depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mimic/happy-eyeballs.nix
Default email b41113241d Project import generated by Copybara.
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
2022-09-22 14:36:57 +02:00

23 lines
450 B
Nix

{ lib, buildDunePackage, mimic, happy-eyeballs-mirage }:
buildDunePackage {
pname = "mimic-happy-eyeballs";
inherit (mimic) src version;
minimalOCamlVersion = "4.08";
strictDeps = true;
buildInputs = [
mimic
happy-eyeballs-mirage
];
doCheck = false;
meta = {
description = "A happy-eyeballs integration into mimic";
maintainers = [ lib.maintainers.ulrikstrid ];
inherit (mimic.meta) license homepage;
};
}