nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.lwt: remove spurious dependency on oasis

+2 -2
+2 -2
pkgs/development/ocaml-modules/lwt/default.nix
··· 1 1 { stdenv, buildOcaml, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4 2 - , react, ssl, libev, pkgconfig, ncurses, ocaml_oasis, glib 2 + , react, ssl, libev, pkgconfig, ncurses, glib 3 3 , ppx_tools, result, cppo 4 4 , ppxSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02" 5 5 , version ? if stdenv.lib.versionAtLeast ocaml.version "4.02" then "2.7.1" else "2.6.0" ··· 27 27 }; 28 28 29 29 nativeBuildInputs = [ pkgconfig ]; 30 - buildInputs = [ ocaml_oasis which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ] 30 + buildInputs = [ which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ] 31 31 ++ stdenv.lib.optional ppxSupport ppx_tools; 32 32 33 33 propagatedBuildInputs = [ result ]