Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, dns, ipaddr, lwt, tcpip }:
2
3buildDunePackage {
4 pname = "dns-mirage";
5
6 inherit (dns) version src;
7 duneVersion = "3";
8
9 propagatedBuildInputs = [
10 dns
11 ipaddr
12 lwt
13 tcpip
14 ];
15
16 meta = dns.meta // {
17 description = "An opinionated Domain Name System (DNS) library";
18 };
19}