about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2021-07-17 13:56:24 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2021-07-24 16:10:29 +0200
commit629e644af2846376f1811f0d38b793b6cb42035b (patch)
treec16086fee15a2e2e86141ee7d4d1e1aad6f3c3ed /pkgs/development/ocaml-modules
parente1c735229ef79f1356bef5313b391df0ec69eea9 (diff)
downloadnixlib-629e644af2846376f1811f0d38b793b6cb42035b.tar
nixlib-629e644af2846376f1811f0d38b793b6cb42035b.tar.gz
nixlib-629e644af2846376f1811f0d38b793b6cb42035b.tar.bz2
nixlib-629e644af2846376f1811f0d38b793b6cb42035b.tar.lz
nixlib-629e644af2846376f1811f0d38b793b6cb42035b.tar.xz
nixlib-629e644af2846376f1811f0d38b793b6cb42035b.tar.zst
nixlib-629e644af2846376f1811f0d38b793b6cb42035b.zip
ocamlPackages.lwt: remove unnecessary dependency on OMP
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/lwt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix
index b0f73546eed9..7d6424564d2f 100644
--- a/pkgs/development/ocaml-modules/lwt/default.nix
+++ b/pkgs/development/ocaml-modules/lwt/default.nix
@@ -1,5 +1,5 @@
 { lib, fetchzip, pkg-config, ncurses, libev, buildDunePackage, ocaml
-, cppo, dune-configurator, ocaml-migrate-parsetree, ocplib-endian, result
+, cppo, dune-configurator, ocplib-endian, result
 , mmap, seq
 , ocaml-syntax-shims
 }:
@@ -18,7 +18,7 @@ buildDunePackage rec {
   };
 
   nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ cppo dune-configurator ocaml-migrate-parsetree ]
+  buildInputs = [ cppo dune-configurator ]
    ++ optional (!versionAtLeast ocaml.version "4.08") ocaml-syntax-shims
    ++ optional (!versionAtLeast ocaml.version "4.07") ncurses;
   propagatedBuildInputs = [ libev mmap ocplib-endian seq result ];