at 23.11-beta 26 lines 734 B view raw
1{ lib, fetchurl, buildDunePackage 2, ppx_sexp_conv, sexplib, astring, uri 3, ipaddr, ipaddr-sexp 4}: 5 6buildDunePackage rec { 7 pname = "conduit"; 8 version = "6.2.0"; 9 10 minimalOCamlVersion = "4.08"; 11 duneVersion = "3"; 12 13 src = fetchurl { 14 url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz"; 15 sha256 = "sha256-PtRAsO3aGyEt12K9skgx85TcoFmF3RtKxPlFgdFFI5Q="; 16 }; 17 18 propagatedBuildInputs = [ astring ipaddr ipaddr-sexp sexplib uri ppx_sexp_conv ]; 19 20 meta = { 21 description = "A network connection establishment library"; 22 license = lib.licenses.isc; 23 maintainers = with lib.maintainers; [ alexfmpe vbgl ]; 24 homepage = "https://github.com/mirage/ocaml-conduit"; 25 }; 26}