nixpkgs/pkgs/development/ocaml-modules/dns/default.nix

30 lines
841 B
Nix
Raw Normal View History

2020-04-08 06:19:59 +00:00
{ lib, buildDunePackage, fetchurl, alcotest
, cstruct, domain-name, duration, gmap, ipaddr, logs, lru, metrics, ptime, rresult, astring, fmt
2020-04-08 06:19:59 +00:00
}:
buildDunePackage rec {
pname = "dns";
version = "4.6.2";
2020-04-08 06:19:59 +00:00
2020-11-12 07:19:44 +00:00
useDune2 = true;
2020-04-08 06:19:59 +00:00
minimumOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/mirage/ocaml-dns/releases/download/v${version}/dns-v${version}.tbz";
sha256 = "0prypr5c589vay4alri78g0sarh06z35did26wn3s3di17d5761q";
2020-04-08 06:19:59 +00:00
};
propagatedBuildInputs = [ rresult astring fmt logs ptime domain-name gmap cstruct ipaddr lru duration metrics ];
2020-04-08 06:19:59 +00:00
doCheck = true;
checkInputs = lib.optional doCheck alcotest;
meta = {
description = "An Domain Name System (DNS) library";
homepage = "https://github.com/mirage/ocaml-dns";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}