aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/lwt/4.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/lwt/4.x.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/lwt/4.x.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/lwt/4.x.nix b/nixpkgs/pkgs/development/ocaml-modules/lwt/4.x.nix
deleted file mode 100644
index a809e68000f..00000000000
--- a/nixpkgs/pkgs/development/ocaml-modules/lwt/4.x.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, fetchzip, pkgconfig, ncurses, libev, buildDunePackage, ocaml
-, cppo, ocaml-migrate-parsetree, ocplib-endian, result
-, mmap, seq
-}:
-
-let inherit (lib) optional versionAtLeast; in
-
-buildDunePackage rec {
- pname = "lwt";
- version = "4.5.0";
-
- src = fetchzip {
- url = "https://github.com/ocsigen/${pname}/archive/${version}.tar.gz";
- sha256 = "0l836z5zr38969bi77aga7ismj4wb01i3ffxf5v59jsgd3g44r2w";
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ cppo ocaml-migrate-parsetree ]
- ++ optional (!versionAtLeast ocaml.version "4.07") ncurses;
- propagatedBuildInputs = [ libev mmap ocplib-endian seq result ];
-
- meta = {
- homepage = "https://ocsigen.org/lwt/";
- description = "A cooperative threads library for OCaml";
- maintainers = [ lib.maintainers.vbgl ];
- license = lib.licenses.mit;
- };
-}