biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / macaddr / default.nix
blob28269ab6dfc9529a154f661ad7d94c7de055bfcc
1 { lib, fetchurl, buildDunePackage, ocaml
2 , ppx_sexp_conv, ounit2
3 }:
5 buildDunePackage rec {
6   pname = "macaddr";
7   version = "5.5.0";
9   minimalOCamlVersion = "4.04";
11   src = fetchurl {
12     url = "https://github.com/mirage/ocaml-ipaddr/releases/download/v${version}/ipaddr-${version}.tbz";
13     hash = "sha256-YokLMW4DV5KtKa8a2XFFbRDe/VJbdLU9sbZ/pCN1wXg=";
14   };
16   checkInputs = [ ppx_sexp_conv ounit2 ];
17   doCheck = lib.versionAtLeast ocaml.version "4.08";
19   meta = with lib; {
20     homepage = "https://github.com/mirage/ocaml-ipaddr";
21     description = "A library for manipulation of MAC address representations";
22     license = licenses.isc;
23     maintainers = [ maintainers.alexfmpe ];
24   };