ocamlPackages.domain-name: init at 0.3.0

This commit is contained in:
Vincent Laporte 2019-08-24 07:02:11 +00:00 committed by Vincent Laporte
parent 4b8755a43c
commit d33df05f50
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, buildDunePackage, fetchurl
, alcotest
, astring, fmt
}:
buildDunePackage rec {
pname = "domain-name";
version = "0.3.0";
src = fetchurl {
url = "https://github.com/hannesm/domain-name/releases/download/v${version}/domain-name-v${version}.tbz";
sha256 = "12kc9p2a2fi1ipc2hyhbzivxpph3npglxwdgvhd6v20rqqdyvnad";
};
minimumOCamlVersion = "4.03";
buildInputs = [ alcotest ];
propagatedBuildInputs = [ astring fmt ];
doCheck = true;
meta = {
homepage = "https://github.com/hannesm/domain-name";
description = "RFC 1035 Internet domain names";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -215,6 +215,8 @@ let
dolog = callPackage ../development/ocaml-modules/dolog { };
domain-name = callPackage ../development/ocaml-modules/domain-name { };
dtoa = callPackage ../development/ocaml-modules/dtoa { };
dune = callPackage ../development/tools/ocaml/dune { };