mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
28 lines
670 B
Nix
28 lines
670 B
Nix
{ lib, buildDunePackage, ocaml, fetchurl
|
|
, alcotest
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "domain-name";
|
|
version = "0.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/hannesm/domain-name/releases/download/v${version}/domain-name-${version}.tbz";
|
|
sha256 = "sha256-pcBuIoRYlSAZc+gS/jAZJ00duBwKeHPabIAHxK0hCMU=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.04";
|
|
duneVersion = "3";
|
|
|
|
checkInputs = [ alcotest ];
|
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/hannesm/domain-name";
|
|
description = "RFC 1035 Internet domain names";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|