Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 25 lines 709 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.1"; 9 10 minimalOCamlVersion = "4.08"; 11 12 src = fetchurl { 13 url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz"; 14 hash = "sha256-WdXntiQ3vkibC3nOEf+QrATvOcaD5M78qFh6/cL1W7s="; 15 }; 16 17 propagatedBuildInputs = [ astring ipaddr ipaddr-sexp sexplib uri ppx_sexp_conv ]; 18 19 meta = { 20 description = "Network connection establishment library"; 21 license = lib.licenses.isc; 22 maintainers = with lib.maintainers; [ alexfmpe vbgl ]; 23 homepage = "https://github.com/mirage/ocaml-conduit"; 24 }; 25}