about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cohttp/async.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/cohttp/async.nix')
-rw-r--r--pkgs/development/ocaml-modules/cohttp/async.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/cohttp/async.nix b/pkgs/development/ocaml-modules/cohttp/async.nix
index 246397b60810..974c3aa2f9c3 100644
--- a/pkgs/development/ocaml-modules/cohttp/async.nix
+++ b/pkgs/development/ocaml-modules/cohttp/async.nix
@@ -1,9 +1,9 @@
-{ stdenv, buildDunePackage, async, cohttp, conduit-async, uri, ppx_sexp_conv
+{ lib, buildDunePackage, async, cohttp, conduit-async, uri, ppx_sexp_conv
 , logs, magic-mime }:
 
-if !stdenv.lib.versionAtLeast cohttp.version "0.99" then
+if !lib.versionAtLeast cohttp.version "0.99" then
 	cohttp
-else if !stdenv.lib.versionAtLeast async.version "0.13" then
+else if !lib.versionAtLeast async.version "0.13" then
 	throw "cohttp-async needs async-0.13 (hence OCaml >= 4.08)"
 else