about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dns/tsig.nix
blob: 3ecc90d3985313b6b51c57441fe758ac845c44b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildDunePackage, dns, mirage-crypto, base64, alcotest }:

buildDunePackage {
  pname = "dns-tsig";

  inherit (dns) version src;
  duneVersion = "3";

  propagatedBuildInputs = [
    mirage-crypto
    dns
    base64
  ];

  doCheck = true;
  checkInputs = [
    alcotest
  ];

  meta = dns.meta // {
    description = "TSIG support for DNS";
  };
}