about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-11-12 10:19:56 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-11-12 10:19:56 +0000
commitdd1a9fa915b923931d07665e3198aae3178b40e6 (patch)
tree67260afb6ddda273f742e1db5bfc9e9f58ae6583 /pkgs/development/ocaml-modules
parentd9dd5425b06f478a1a7cdefd62b8f1d1646b1cc6 (diff)
downloadnixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.tar
nixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.tar.gz
nixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.tar.bz2
nixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.tar.lz
nixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.tar.xz
nixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.tar.zst
nixlib-dd1a9fa915b923931d07665e3198aae3178b40e6.zip
ocamlPackages.nocrypto: remove spurious dependency on oasis
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/nocrypto/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix
index 91ab694eb6f2..c68584957c66 100644
--- a/pkgs/development/ocaml-modules/nocrypto/default.nix
+++ b/pkgs/development/ocaml-modules/nocrypto/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, opam, topkg
 , cpuid, ocb-stubblr
-, cstruct, zarith, ocaml_oasis, ppx_sexp_conv, sexplib
+, cstruct, zarith, ppx_sexp_conv, sexplib
 , lwt ? null
 }:
 
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     sha256 = "0nhnlpbqh3mf9y2cxivlvfb70yfbdpvg6jslzq64xblpgjyg443p";
   };
 
-  buildInputs = [ ocaml ocaml_oasis findlib ocamlbuild topkg opam cpuid ocb-stubblr
+  buildInputs = [ ocaml findlib ocamlbuild topkg opam cpuid ocb-stubblr
     ppx_sexp_conv ];
   propagatedBuildInputs = [ cstruct zarith sexplib ] ++ optional withLwt lwt;