mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 10:44:36 +00:00
21 lines
229 B
Nix
21 lines
229 B
Nix
{
|
|
buildDunePackage,
|
|
tls,
|
|
lwt,
|
|
mirage-crypto-rng,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tls-lwt";
|
|
|
|
inherit (tls) src meta version;
|
|
|
|
doCheck = true;
|
|
|
|
propagatedBuildInputs = [
|
|
lwt
|
|
mirage-crypto-rng
|
|
tls
|
|
];
|
|
}
|