Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
323 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
dns,
cstruct,
ipaddr,
lwt,
tcpip,
}:
buildDunePackage {
pname = "dns-mirage";
inherit (dns) version src;
propagatedBuildInputs = [
cstruct
dns
ipaddr
lwt
tcpip
];
meta = dns.meta // {
description = "Opinionated Domain Name System (DNS) library";
};
}