FreeBSD: use own stdenv, do not run libtiff tests, use PIC for zlib

This commit is contained in:
janus
2016-01-01 17:01:13 +00:00
parent 2d00f27230
commit f351aaaf85
7 changed files with 320 additions and 5 deletions
+3
View File
@@ -33,6 +33,8 @@ rec {
pkgs = stdenvNativePkgs;
};
stdenvFreeBSD = (import ./freebsd { inherit system allPackages platform config; }).stdenvFreeBSD;
# Linux standard environment.
stdenvLinux = (import ./linux { inherit system allPackages platform config lib; }).stdenvLinux;
@@ -58,5 +60,6 @@ rec {
if system == "x86_64-solaris" then stdenvNix else
if system == "i686-cygwin" then stdenvNative else
if system == "x86_64-cygwin" then stdenvNative else
if system == "x86_64-freebsd" then stdenvFreeBSD else
stdenvNative;
}