about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit
diff options
context:
space:
mode:
authorAlexandre Esteves <2335822+alexfmpe@users.noreply.github.com>2019-12-29 19:40:36 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-12-29 20:40:36 +0100
commitbe90b35b9efbd7baaa80f367ffc41609531a8fe2 (patch)
tree7602920ad7ee8643608e2eede9245ca2491b1d23 /pkgs/development/ocaml-modules/conduit
parentaf2eaec41a18ca30c38512dd1e6de8fa8107f7e4 (diff)
downloadnixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.tar
nixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.tar.gz
nixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.tar.bz2
nixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.tar.lz
nixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.tar.xz
nixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.tar.zst
nixlib-be90b35b9efbd7baaa80f367ffc41609531a8fe2.zip
ocamlPackages.conduit: 1.0.0 -> 1.4.0 and dependencies (#74821)
Diffstat (limited to 'pkgs/development/ocaml-modules/conduit')
-rw-r--r--pkgs/development/ocaml-modules/conduit/default.nix34
1 files changed, 17 insertions, 17 deletions
diff --git a/pkgs/development/ocaml-modules/conduit/default.nix b/pkgs/development/ocaml-modules/conduit/default.nix
index 39234e86ef1c..22538b87f6af 100644
--- a/pkgs/development/ocaml-modules/conduit/default.nix
+++ b/pkgs/development/ocaml-modules/conduit/default.nix
@@ -1,26 +1,26 @@
 { stdenv, fetchFromGitHub, buildDunePackage
-, ppx_sexp_conv
-, astring, ipaddr, uri
+, ppx_sexp_conv, sexplib
+, astring, ipaddr, macaddr, uri,
 }:
 
 buildDunePackage rec {
   pname = "conduit";
-	version = "1.0.0";
+  version = "1.4.0";
 
-	src = fetchFromGitHub {
-		owner = "mirage";
-		repo = "ocaml-conduit";
-		rev = "v${version}";
-		sha256 = "1ryigzh7sfif1mly624fpm87aw5h60n5wzdlrvqsf71qcpxc6iiz";
-	};
+  src = fetchFromGitHub {
+    owner = "mirage";
+    repo = "ocaml-conduit";
+    rev = "v${version}";
+    sha256 = "1qzamqcmf9ywz04bkwrv17mz9j6zq2w9h1xmnjvp11pnwrs2xq8l";
+  };
 
-	buildInputs = [ ppx_sexp_conv ];
-	propagatedBuildInputs = [ astring ipaddr uri ];
+  buildInputs = [ ppx_sexp_conv ];
+  propagatedBuildInputs = [ astring ipaddr macaddr sexplib uri ];
 
-	meta = {
-		description = "Network connection library for TCP and SSL";
-		license = stdenv.lib.licenses.isc;
-		maintainers = [ stdenv.lib.maintainers.vbgl ];
-		inherit (src.meta) homepage;
-	};
+  meta = {
+    description = "Network connection library for TCP and SSL";
+    license = stdenv.lib.licenses.isc;
+    maintainers = with stdenv.lib.maintainers; [ alexfmpe vbgl ];
+    inherit (src.meta) homepage;
+  };
 }