Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 19 lines 316 B view raw
1{ lib, buildDunePackage, tls, lwt, mirage-crypto-rng-lwt, cmdliner, x509 }: 2 3buildDunePackage rec { 4 pname = "tls-lwt"; 5 6 inherit (tls) src meta version; 7 8 minimalOCamlVersion = "4.11"; 9 duneVersion = "3"; 10 11 doCheck = true; 12 13 propagatedBuildInputs = [ 14 lwt 15 mirage-crypto-rng-lwt 16 tls 17 x509 18 ]; 19}