From 10d70a2ae3e20ae8e578212b4cc92b453445d8ca Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 2 Jun 2018 14:55:23 +0000 Subject: [PATCH] ocamlPackages.lambda-term: fix installPhase --- pkgs/development/ocaml-modules/lambda-term/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix index 769b80ecddc..fdd30d28ed8 100644 --- a/pkgs/development/ocaml-modules/lambda-term/default.nix +++ b/pkgs/development/ocaml-modules/lambda-term/default.nix @@ -17,10 +17,7 @@ buildOcaml rec { buildPhase = "jbuilder build -p lambda-term"; - installPhase = '' - ${jbuilder.installPhase} - mv $out/lib/ocaml/${ocaml.version}/site-lib/{stubslibs,lambda-term}/dlllambda_term_stubs.so - ''; + inherit (jbuilder) installPhase; hasSharedObjects = true;