mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 19:34:06 +00:00
92d2950194
Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>
20 lines
316 B
Nix
20 lines
316 B
Nix
{ lib, buildDunePackage, tls, lwt, mirage-crypto-rng-lwt, cmdliner, x509 }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tls-lwt";
|
|
|
|
inherit (tls) src meta version;
|
|
|
|
minimalOCamlVersion = "4.11";
|
|
duneVersion = "3";
|
|
|
|
doCheck = true;
|
|
|
|
propagatedBuildInputs = [
|
|
lwt
|
|
mirage-crypto-rng-lwt
|
|
tls
|
|
x509
|
|
];
|
|
}
|