2017-05-31 04:20:15 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
2018-12-05 04:14:41 +01:00
|
|
|
, static ? true
|
|
|
|
, shared ? true
|
2017-05-31 04:20:15 +02:00
|
|
|
}:
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 17:53:04 +01:00
|
|
|
|
2018-09-19 18:10:09 +02:00
|
|
|
stdenv.mkDerivation (rec {
|
2012-03-01 23:22:24 +01:00
|
|
|
name = "zlib-${version}";
|
2017-06-23 23:45:27 +02:00
|
|
|
version = "1.2.11";
|
2013-04-30 09:15:15 +02:00
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
src = fetchurl {
|
2012-03-01 23:22:24 +01:00
|
|
|
urls =
|
2018-06-28 20:43:35 +02:00
|
|
|
[ "https://www.zlib.net/fossils/${name}.tar.gz" # stable archive path
|
2012-03-01 23:22:24 +01:00
|
|
|
"mirror://sourceforge/libpng/zlib/${version}/${name}.tar.gz"
|
2012-02-17 18:02:18 +01:00
|
|
|
];
|
2017-02-05 13:30:44 +01:00
|
|
|
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1";
|
2003-11-06 16:24:19 +01:00
|
|
|
};
|
2010-07-18 23:52:39 +02:00
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
patches = stdenv.lib.optional stdenv.hostPlatform.isCygwin ./disable-cygwin-widechar.patch;
|
2017-05-23 15:36:56 +02:00
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2015-06-12 02:58:26 +02:00
|
|
|
substituteInPlace configure \
|
|
|
|
--replace '/usr/bin/libtool' 'ar' \
|
|
|
|
--replace 'AR="libtool"' 'AR="ar"' \
|
|
|
|
--replace 'ARFLAGS="-o"' 'ARFLAGS="-r"'
|
|
|
|
'';
|
|
|
|
|
2018-12-05 04:14:41 +01:00
|
|
|
outputs = [ "out" "dev" ]
|
|
|
|
++ stdenv.lib.optional (shared && static) "static";
|
2014-08-27 01:14:09 +02:00
|
|
|
setOutputFlags = false;
|
2015-10-15 11:00:37 +02:00
|
|
|
outputDoc = "dev"; # single tiny man3 page
|
2014-08-27 01:14:09 +02:00
|
|
|
|
2018-12-05 04:14:41 +01:00
|
|
|
configureFlags = stdenv.lib.optional shared "--shared"
|
|
|
|
++ stdenv.lib.optional (static && !shared) "--static";
|
2015-05-03 13:35:58 +02:00
|
|
|
|
2018-12-05 04:14:41 +01:00
|
|
|
postInstall = stdenv.lib.optionalString (shared && static) ''
|
2015-12-02 10:03:23 +01:00
|
|
|
moveToOutput lib/libz.a "$static"
|
2015-05-03 13:35:58 +02:00
|
|
|
''
|
|
|
|
# jww (2015-01-06): Sometimes this library install as a .so, even on
|
|
|
|
# Darwin; others time it installs as a .dylib. I haven't yet figured out
|
|
|
|
# what causes this difference.
|
2018-08-20 20:43:41 +02:00
|
|
|
+ stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2015-05-03 13:35:58 +02:00
|
|
|
for file in $out/lib/*.so* $out/lib/*.dylib* ; do
|
2018-09-19 18:10:09 +02:00
|
|
|
${stdenv.cc.bintools.targetPrefix}install_name_tool -id "$file" $file
|
2015-05-03 13:35:58 +02:00
|
|
|
done
|
2017-06-23 23:45:27 +02:00
|
|
|
''
|
|
|
|
# Non-typical naming confuses libtool which then refuses to use zlib's DLL
|
|
|
|
# in some cases, e.g. when compiling libpng.
|
2018-08-20 20:43:41 +02:00
|
|
|
+ stdenv.lib.optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
|
2017-06-23 23:45:27 +02:00
|
|
|
ln -s zlib1.dll $out/bin/libz.dll
|
2014-08-27 01:14:09 +02:00
|
|
|
'';
|
|
|
|
|
2011-10-25 20:35:17 +02:00
|
|
|
# As zlib takes part in the stdenv building, we don't want references
|
|
|
|
# to the bootstrap-tools libgcc (as uses to happen on arm/mips)
|
2018-08-20 20:43:41 +02:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.hostPlatform.isDarwin) "-static-libgcc";
|
2011-10-25 20:35:17 +02:00
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform && static;
|
2017-06-23 23:45:27 +02:00
|
|
|
configurePlatforms = [];
|
2016-04-21 16:12:50 +02:00
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
installFlags = stdenv.lib.optionals (stdenv.hostPlatform.libc == "msvcrt") [
|
2017-06-23 23:45:27 +02:00
|
|
|
"BINARY_PATH=$(out)/bin"
|
|
|
|
"INCLUDE_PATH=$(dev)/include"
|
|
|
|
"LIBRARY_PATH=$(out)/lib"
|
|
|
|
];
|
2010-03-10 00:11:12 +01:00
|
|
|
|
2017-06-23 23:45:27 +02:00
|
|
|
makeFlags = [
|
2017-11-25 19:43:57 +01:00
|
|
|
"PREFIX=${stdenv.cc.targetPrefix}"
|
2018-08-20 20:43:41 +02:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform.libc == "msvcrt") [
|
2017-06-23 23:45:27 +02:00
|
|
|
"-f" "win32/Makefile.gcc"
|
2018-12-05 04:14:41 +01:00
|
|
|
] ++ stdenv.lib.optionals shared [
|
2017-06-23 23:45:27 +02:00
|
|
|
"SHARED_MODE=1"
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
};
|
2014-06-23 13:26:03 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-08-09 11:13:44 +02:00
|
|
|
homepage = https://zlib.net;
|
2014-06-23 13:26:03 +02:00
|
|
|
description = "Lossless data-compression library";
|
|
|
|
license = licenses.zlib;
|
2015-05-01 23:36:51 +02:00
|
|
|
platforms = platforms.all;
|
2014-06-23 13:26:03 +02:00
|
|
|
};
|
2018-09-19 18:10:09 +02:00
|
|
|
} // stdenv.lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform) {
|
|
|
|
preConfigure = ''
|
|
|
|
export CHOST=${stdenv.hostPlatform.config}
|
|
|
|
'';
|
2018-10-17 19:43:07 +02:00
|
|
|
} // stdenv.lib.optionalAttrs (stdenv.hostPlatform.libc == "msvcrt") {
|
|
|
|
configurePhase = ":";
|
2018-09-19 18:10:09 +02:00
|
|
|
})
|