From 9b70bc6e34345b868aaad2defa426dc331b505d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 10 Aug 2012 16:30:28 +0200 Subject: [PATCH] guile: allow libunistring and Readline to be found on OpenSolaris --- pkgs/development/interpreters/guile/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix index d217099f3b7..93676a9b11a 100644 --- a/pkgs/development/interpreters/guile/default.nix +++ b/pkgs/development/interpreters/guile/default.nix @@ -82,12 +82,19 @@ // (stdenv.lib.optionalAttrs stdenv.isSunOS { - # Make sure the right is found, and not the incompatible - # /usr/include/mp.h from OpenSolaris. See - # - # for details. # TODO: Move me above. - configureFlags = [ "--with-libgmp-prefix=${gmp}" ]; + configureFlags = + [ + # Make sure the right is found, and not the incompatible + # /usr/include/mp.h from OpenSolaris. See + # + # for details. + "--with-libgmp-prefix=${gmp}" + + # Same for these (?). + "--with-libreadline-prefix=${readline}" + "--with-libunistring-prefix=${libunistring}" + ]; }) //