nettle: allow GMP to be found on OpenSolaris

This commit is contained in:
Ludovic Courtès 2012-08-09 18:32:53 +02:00
parent cff9e132e7
commit 711d1fc6f0

View file

@ -1,6 +1,6 @@
{ fetchurl, stdenv, gmp, gnum4 }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
name = "nettle-2.4";
src = fetchurl {
@ -51,3 +51,13 @@ stdenv.mkDerivation rec {
platforms = stdenv.lib.platforms.all;
};
}
//
stdenv.lib.optionalAttrs stdenv.isSunOS {
# Make sure the right <gmp.h> is found, and not the incompatible
# /usr/include/mp.h from OpenSolaris. See
# <https://lists.gnu.org/archive/html/hydra-users/2012-08/msg00000.html>
# for details.
configureFlags = [ "--with-include-path=${gmp}/include" ];
})