about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mimic/happy-eyeballs.nix
blob: 193509dd4903663c65a23937e01823481feb4042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildDunePackage, mimic, happy-eyeballs-mirage }:

buildDunePackage {
  pname = "mimic-happy-eyeballs";

  inherit (mimic) src version;

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  strictDeps = true;

  propagatedBuildInputs = [
    mimic
    happy-eyeballs-mirage
  ];
  doCheck = false;

  meta = {
    description = "A happy-eyeballs integration into mimic";
    maintainers = [ lib.maintainers.ulrikstrid ];
    inherit (mimic.meta) license homepage;
  };
}