libxml2: add static output (#41915)

wip/yesman
Antoine Eiche 6 years ago committed by Orivej Desh
parent 8e61ad2800
commit 819f47bb36
  1. 9
      pkgs/development/libraries/libxml2/default.nix

@ -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 = {

Loading…
Cancel
Save