about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/conduit/lwt.nix
blob: 560600e2fee8ae0ffe7d724343019647de32437b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt }:

if !stdenv.lib.versionAtLeast conduit.version "1.0"
then conduit
else

buildDunePackage rec {
	pname = "conduit-lwt";
	inherit (conduit) version src meta;

	buildInputs = [ ppx_sexp_conv ];

	propagatedBuildInputs = [ conduit ocaml_lwt ];
}