nixpkgs/pkgs/development/ocaml-modules/mimic/happy-eyeballs.nix

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

25 lines
481 B
Nix
Raw Normal View History

2022-05-31 19:52:19 +00:00
{ lib, buildDunePackage, mimic, happy-eyeballs-mirage }:
buildDunePackage {
pname = "mimic-happy-eyeballs";
inherit (mimic) src version;
minimalOCamlVersion = "4.08";
2023-01-09 09:34:03 +00:00
duneVersion = "3";
2022-05-31 19:52:19 +00:00
strictDeps = true;
propagatedBuildInputs = [
2022-05-31 19:52:19 +00:00
mimic
happy-eyeballs-mirage
];
doCheck = false;
meta = {
description = "A happy-eyeballs integration into mimic";
maintainers = [ lib.maintainers.ulrikstrid ];
inherit (mimic.meta) license homepage;
};
}