summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-06-02 14:54:51 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-06-06 07:14:27 +0000
commit98e8e95136d3e89fd46c03899aebef10d7e55ee1 (patch)
treebbc179e6cf52dc60524fc535005bb8e7b3061f81 /pkgs/development/ocaml-modules
parent94445ed4bc4229d8bc40076f0d77ff265138c3c9 (diff)
downloadnixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.tar
nixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.tar.gz
nixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.tar.bz2
nixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.tar.lz
nixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.tar.xz
nixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.tar.zst
nixpkgs-98e8e95136d3e89fd46c03899aebef10d7e55ee1.zip
ocamlPackages.nocrypto: use opaline
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/nocrypto/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix
index cfe3f37800d..6e68c87b5ff 100644
--- a/pkgs/development/ocaml-modules/nocrypto/default.nix
+++ b/pkgs/development/ocaml-modules/nocrypto/default.nix
@@ -22,10 +22,7 @@ stdenv.mkDerivation rec {
     ppx_sexp_conv ];
   propagatedBuildInputs = [ cstruct zarith sexplib ] ++ optional withLwt cstruct-lwt;
 
-  buildPhase = ''
-    LD_LIBRARY_PATH=${cpuid}/lib/ocaml/${ocaml.version}/site-lib/stubslibs/ \
-    ${topkg.buildPhase} --with-lwt ${boolToString withLwt}
-  '';
+  buildPhase = "${topkg.buildPhase} --with-lwt ${boolToString withLwt}";
   inherit (topkg) installPhase;
 
   meta = {