Merge pull request #41915 from nlewo/pr-libxml2-static

libxml2: add static output
This commit is contained in:
xeji 2018-06-13 17:55:17 +02:00 committed by GitHub
commit ff842faa4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
sha256 = "0ci7is75bwqqw2p32vxvrk6ds51ik7qgx73m920rakv5jlayax0b";
};
outputs = [ "bin" "dev" "out" "man" "doc" ]
outputs = [ "bin" "dev" "out" "man" "doc" "static" ]
++ lib.optional pythonSupport "py";
propagatedBuildOutputs = "out bin" + lib.optionalString pythonSupport " py";
@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
configureFlags =
lib.optional pythonSupport "--with-python=${python}"
++ lib.optional icuSupport "--with-icu"
++ [ "--exec_prefix=$dev" ];
++ [ "--exec_prefix=$dev" "--enable-static" ];
enableParallelBuilding = true;
@ -59,6 +59,11 @@ in stdenv.mkDerivation rec {
moveToOutput share/man/man1 "$bin"
'';
postInstall = ''
mkdir -p $static/lib
cp .libs/libxml2.a $static/lib/
'';
passthru = { inherit version; pythonSupport = pythonSupport; };
meta = {