Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 352 B view raw
1{ buildDunePackage, dns, mirage-crypto, base64, alcotest }: 2 3buildDunePackage { 4 pname = "dns-tsig"; 5 6 inherit (dns) version src; 7 duneVersion = "3"; 8 9 propagatedBuildInputs = [ 10 mirage-crypto 11 dns 12 base64 13 ]; 14 15 doCheck = true; 16 checkInputs = [ 17 alcotest 18 ]; 19 20 meta = dns.meta // { 21 description = "TSIG support for DNS"; 22 }; 23}