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
codeium: 1.24.2 -> 1.30.2 (#363819)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
dns
/
client.nix
blob
956866037629aea55b449602d01897ffc47d9c4f
1
{
2
buildDunePackage,
3
dns,
4
mirage-crypto-rng,
5
mtime,
6
randomconv,
7
domain-name,
8
alcotest,
9
}:
10
11
buildDunePackage {
12
pname = "dns-client";
13
inherit (dns) src version;
14
15
propagatedBuildInputs = [
16
dns
17
randomconv
18
domain-name
19
mtime
20
mirage-crypto-rng
21
];
22
checkInputs = [ alcotest ];
23
doCheck = true;
24
25
meta = dns.meta // {
26
description = "Pure DNS resolver API";
27
mainProgram = "dns-client.unix";
28
};
29
}