aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/conduit/0.10.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/conduit/0.10.0.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/conduit/0.10.0.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/conduit/0.10.0.nix b/nixpkgs/pkgs/development/ocaml-modules/conduit/0.10.0.nix
deleted file mode 100644
index 4d1c43e0ae1..00000000000
--- a/nixpkgs/pkgs/development/ocaml-modules/conduit/0.10.0.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, buildOcaml, fetchurl, ocaml, sexplib_p4, stringext, uri_p4, cstruct, ipaddr_p4
-, asyncSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
-, async_p4 ? null, async_ssl_p4 ? null, lwt ? null
-}:
-
-buildOcaml rec {
- name = "conduit";
- version = "0.10.0";
-
- src = fetchurl {
- url = "https://github.com/mirage/ocaml-conduit/archive/v${version}.tar.gz";
- sha256 = "1jz2skzsyg0axlkk9s6ahfblfrjx599wisyfs0cvn5dik9jqjadh";
- };
-
- propagatedBuildInputs = [ sexplib_p4 stringext uri_p4 cstruct ipaddr_p4 ];
- buildInputs = stdenv.lib.optional (lwt != null) lwt
- ++ stdenv.lib.optional (asyncSupport && async_p4 != null) async_p4
- ++ stdenv.lib.optional (asyncSupport && async_ssl_p4 != null) async_ssl_p4;
-
- meta = with stdenv.lib; {
- homepage = https://github.com/mirage/ocaml-conduit;
- description = "Resolve URIs into communication channels for Async or Lwt ";
- license = licenses.mit;
- maintainers = [ maintainers.ericbmerritt ];
- };
-}