ocamlPackages.conduit: 1.0.0 -> 1.4.0 and dependencies (#74821)

This commit is contained in:
Alexandre Esteves
2019-12-29 19:40:36 +00:00
committed by Vincent Laporte
parent af2eaec41a
commit be90b35b9e
4 changed files with 56 additions and 26 deletions

View File

@@ -0,0 +1,26 @@
{ lib, fetchurl, buildDunePackage
, ppx_sexp_conv
}:
buildDunePackage rec {
pname = "macaddr";
version = "3.1.0";
minimumOCamlVersion = "4.04";
src = fetchurl {
url = "https://github.com/mirage/ocaml-ipaddr/archive/v${version}.tar.gz";
sha256 = "1hi3v5dzg6h4qb268ch3h6v61gsc8bv21ajhb35z37v5nsdmyzbh";
};
propagatedBuildInputs = [ ppx_sexp_conv ];
doCheck = false; # ipaddr and macaddr tests are together, which requires mutual dependency
meta = with lib; {
homepage = https://github.com/mirage/ocaml-ipaddr;
description = "A library for manipulation of MAC address representations";
license = licenses.isc;
maintainers = [ maintainers.alexfmpe ];
};
}