biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / domain-name / default.nix
blobd518f18571c5c4c3bf8347dedceb585020f62673
1 { lib, buildDunePackage, ocaml, fetchurl
2 , alcotest
3 }:
5 buildDunePackage rec {
6   pname = "domain-name";
7   version = "0.4.0";
9   src = fetchurl {
10     url = "https://github.com/hannesm/domain-name/releases/download/v${version}/domain-name-${version}.tbz";
11     sha256 = "sha256-pcBuIoRYlSAZc+gS/jAZJ00duBwKeHPabIAHxK0hCMU=";
12   };
14   minimalOCamlVersion = "4.04";
15   duneVersion = "3";
17   checkInputs = [ alcotest ];
19   doCheck = lib.versionAtLeast ocaml.version "4.08";
21   meta = {
22     homepage = "https://github.com/hannesm/domain-name";
23     description = "RFC 1035 Internet domain names";
24     license = lib.licenses.isc;
25     maintainers = [ lib.maintainers.vbgl ];
26   };