mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
27 lines
413 B
Nix
27 lines
413 B
Nix
|
{ buildDunePackage
|
||
|
, happy-eyeballs
|
||
|
, cmdliner
|
||
|
, dns-client
|
||
|
, logs
|
||
|
, lwt
|
||
|
}:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "happy-eyeballs-lwt";
|
||
|
inherit (happy-eyeballs) src version;
|
||
|
|
||
|
buildInputs = [ cmdliner ];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
dns-client
|
||
|
happy-eyeballs
|
||
|
logs
|
||
|
lwt
|
||
|
];
|
||
|
|
||
|
meta = happy-eyeballs.meta // {
|
||
|
description = "Connecting to a remote host via IP version 4 or 6 using Lwt_unix";
|
||
|
};
|
||
|
|
||
|
}
|