about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-02-20 18:37:40 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-02-28 21:24:26 +0100
commit305dc2a199a8a9571b22d26fc67420c9e5fb8524 (patch)
tree37a8878378c5e9511c9b371f3c8e7a8158581396 /pkgs/development
parentfca7f386db55f4e3bd456855113969e05c0b4804 (diff)
downloadnixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.tar
nixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.tar.gz
nixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.tar.bz2
nixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.tar.lz
nixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.tar.xz
nixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.tar.zst
nixlib-305dc2a199a8a9571b22d26fc67420c9e5fb8524.zip
ocamlPackages.cohttp_p4: remove at 0.19.3
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/cohttp/0.19.3.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/ocaml-modules/cohttp/0.19.3.nix b/pkgs/development/ocaml-modules/cohttp/0.19.3.nix
deleted file mode 100644
index 24547a03a086..000000000000
--- a/pkgs/development/ocaml-modules/cohttp/0.19.3.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, buildOcaml, fetchurl, ocaml, cmdliner, re, uri_p4, fieldslib_p4
-, sexplib_p4, conduit , stringext, base64, magic-mime, ounit, alcotest
-, asyncSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
-, lwt ? null, async_p4 ? null, async_ssl_p4 ? null
-}:
-
-buildOcaml rec {
-  name = "cohttp";
-  version = "0.19.3";
-
-  minimumSupportedOcamlVersion = "4.01";
-
-  src = fetchurl {
-    url = "https://github.com/mirage/ocaml-cohttp/archive/v${version}.tar.gz";
-    sha256 = "1nrzpd4h52c1hnzcgsz462676saj9zss708ng001h54dglk8i1iv";
-  };
-
-  buildInputs = [ alcotest cmdliner conduit magic-mime ounit lwt ]
-  ++ stdenv.lib.optionals asyncSupport [ async_p4 async_ssl_p4 ];
-  propagatedBuildInputs = [ re stringext uri_p4 fieldslib_p4 sexplib_p4 base64 ];
-
-  buildFlags = [ "PREFIX=$(out)" ];
-
-  meta = with stdenv.lib; {
-    homepage = https://github.com/mirage/ocaml-cohttp;
-    description = "Very lightweight HTTP server using Lwt or Async";
-    license = licenses.mit;
-    maintainers = [ maintainers.ericbmerritt ];
-  };
-}