open62541pp: 0.16.0 -> 0.17.0 (#374938)
[NixPkgs.git] / pkgs / development / ocaml-modules / domain-name / default.nix
blob745550691c4a2d1b7e22d2dc73e6536275d88252
2   lib,
3   buildDunePackage,
4   ocaml,
5   fetchurl,
6   alcotest,
7 }:
9 buildDunePackage rec {
10   pname = "domain-name";
11   version = "0.4.0";
13   src = fetchurl {
14     url = "https://github.com/hannesm/domain-name/releases/download/v${version}/domain-name-${version}.tbz";
15     sha256 = "sha256-pcBuIoRYlSAZc+gS/jAZJ00duBwKeHPabIAHxK0hCMU=";
16   };
18   minimalOCamlVersion = "4.04";
19   duneVersion = "3";
21   checkInputs = [ alcotest ];
23   doCheck = lib.versionAtLeast ocaml.version "4.08";
25   meta = {
26     homepage = "https://github.com/hannesm/domain-name";
27     description = "RFC 1035 Internet domain names";
28     license = lib.licenses.isc;
29     maintainers = [ lib.maintainers.vbgl ];
30   };