fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 buildDunePackage,
3 dns,
4 mirage-crypto-rng,
5 mtime,
6 randomconv,
7 domain-name,
8 alcotest,
9}:
10
11buildDunePackage {
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}