a8406971c3
ocamlPackages.conduit: 4.0.2 → 5.1.0 ocamlPackages.cohttp: 4.0.0 → 5.0.0 ocamlPackages.ocsigen_server: fix compatibility with cohttp-5.0.0
23 lines
331 B
Nix
23 lines
331 B
Nix
{ buildDunePackage, dns, mirage-crypto, base64, alcotest }:
|
|
|
|
buildDunePackage {
|
|
pname = "dns-tsig";
|
|
|
|
inherit (dns) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
mirage-crypto
|
|
dns
|
|
base64
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
alcotest
|
|
];
|
|
|
|
meta = dns.meta // {
|
|
description = "TSIG support for DNS";
|
|
};
|
|
}
|