Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.conduit: 6.2.0 → 6.2.1

authored by Vincent Laporte and committed by Vincent Laporte e97b3e41 eec92ca9

+2 -14
-2
pkgs/development/ocaml-modules/conduit/async.nix
··· 9 9 src 10 10 ; 11 11 12 - duneVersion = "3"; 13 - 14 12 buildInputs = [ ppx_sexp_conv ppx_here ]; 15 13 16 14 propagatedBuildInputs = [
+2 -3
pkgs/development/ocaml-modules/conduit/default.nix
··· 5 5 6 6 buildDunePackage rec { 7 7 pname = "conduit"; 8 - version = "6.2.0"; 8 + version = "6.2.1"; 9 9 10 10 minimalOCamlVersion = "4.08"; 11 - duneVersion = "3"; 12 11 13 12 src = fetchurl { 14 13 url = "https://github.com/mirage/ocaml-conduit/releases/download/v${version}/conduit-${version}.tbz"; 15 - sha256 = "sha256-PtRAsO3aGyEt12K9skgx85TcoFmF3RtKxPlFgdFFI5Q="; 14 + hash = "sha256-WdXntiQ3vkibC3nOEf+QrATvOcaD5M78qFh6/cL1W7s="; 16 15 }; 17 16 18 17 propagatedBuildInputs = [ astring ipaddr ipaddr-sexp sexplib uri ppx_sexp_conv ];
-1
pkgs/development/ocaml-modules/conduit/lwt-unix.nix
··· 6 6 buildDunePackage { 7 7 pname = "conduit-lwt-unix"; 8 8 inherit (conduit-lwt) version src; 9 - duneVersion = "3"; 10 9 11 10 buildInputs = [ ppx_sexp_conv ]; 12 11
-1
pkgs/development/ocaml-modules/conduit/lwt.nix
··· 3 3 buildDunePackage { 4 4 pname = "conduit-lwt"; 5 5 inherit (conduit) version src; 6 - duneVersion = "3"; 7 6 8 7 buildInputs = [ ppx_sexp_conv ]; 9 8
-7
pkgs/development/ocaml-modules/conduit/mirage.nix
··· 1 1 { buildDunePackage, conduit-lwt 2 - , fetchpatch 3 2 , ppx_sexp_conv, sexplib, uri, cstruct, mirage-flow 4 3 , mirage-flow-combinators, mirage-random, mirage-time, mirage-clock 5 4 , dns-client-mirage, vchan, xenstore, tls, tls-mirage, ipaddr, ipaddr-sexp ··· 10 9 pname = "conduit-mirage"; 11 10 12 11 inherit (conduit-lwt) version src; 13 - 14 - # Compatibility with tls ≥ 0.17 15 - patches = fetchpatch { 16 - url = "https://github.com/mirage/ocaml-conduit/commit/403b4cec528dae71aded311215868a35c11dad7e.patch"; 17 - hash = "sha256-R/iuLf2PSrx8mLKLueMA3+zr9sB8dX/3evjUbfQECBk="; 18 - }; 19 12 20 13 nativeBuildInputs = [ ppx_sexp_conv ]; 21 14