From ea69fba953841a94d15339cae32604cece655b54 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Wed, 13 Jun 2018 16:07:54 +0000 Subject: [PATCH] Revert "libxml2: add static output" This reverts commit 1897c352f55f5c5e7b63f252456d091d0fbdbcf7 on master. This is a mass rebuild that should go through staging. --- pkgs/development/libraries/libxml2/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix index 1551d4032471..be2f83cb498e 100644 --- a/pkgs/development/libraries/libxml2/default.nix +++ b/pkgs/development/libraries/libxml2/default.nix @@ -17,7 +17,7 @@ in stdenv.mkDerivation rec { sha256 = "0ci7is75bwqqw2p32vxvrk6ds51ik7qgx73m920rakv5jlayax0b"; }; - outputs = [ "bin" "dev" "out" "man" "doc" "static" ] + outputs = [ "bin" "dev" "out" "man" "doc" ] ++ 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" "--enable-static" ]; + ++ [ "--exec_prefix=$dev" ]; enableParallelBuilding = true; @@ -59,11 +59,6 @@ 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 = {