repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
dns
/
tsig.nix
blob
3ecc90d3985313b6b51c57441fe758ac845c44b9
1
{ buildDunePackage, dns, mirage-crypto, base64, alcotest }:
2
3
buildDunePackage {
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
}