From 8584ec97edc281b69d82d86e030d3e669103f824 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 26 Oct 2016 09:47:50 -0500 Subject: [PATCH] yices: fix install target by using 'true' as ldconfig --- pkgs/applications/science/logic/yices/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/science/logic/yices/default.nix b/pkgs/applications/science/logic/yices/default.nix index d892a9abb2e..a34b995ecea 100644 --- a/pkgs/applications/science/logic/yices/default.nix +++ b/pkgs/applications/science/logic/yices/default.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { ]; buildInputs = [ gmp-static gperf autoreconfHook ]; + installPhase = ''make install LDCONFIG=true''; + meta = { description = "A high-performance theorem prover and SMT solver"; homepage = "http://yices.csl.sri.com";