summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-12-02 10:03:23 +0100
committerLuca Bruno <lethalman88@gmail.com>2015-12-02 10:05:36 +0100
commite289717414ae4e730586563122591a68820f7c25 (patch)
treee5584b51145fbc36b960abcdf78647ec8cb99650 /pkgs/development/libraries/libxml2
parent0d2ac2b08c6e9a1f51de541b85ee0322423331c1 (diff)
downloadnixlib-e289717414ae4e730586563122591a68820f7c25.tar
nixlib-e289717414ae4e730586563122591a68820f7c25.tar.gz
nixlib-e289717414ae4e730586563122591a68820f7c25.tar.bz2
nixlib-e289717414ae4e730586563122591a68820f7c25.tar.lz
nixlib-e289717414ae4e730586563122591a68820f7c25.tar.xz
nixlib-e289717414ae4e730586563122591a68820f7c25.tar.zst
nixlib-e289717414ae4e730586563122591a68820f7c25.zip
rename moveToOutput and propagatedBuildInputs
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index af71c05a1c87..2b2b1d81a16d 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   };
 
   outputs = [ "dev" "out" "bin" "doc" "py" ];
-  propagatedOutputs = "out bin py";
+  propagatedBuildOutputs = "out bin py";
 
   buildInputs = [ python ]
     # Libxml2 has an optional dependency on liblzma.  However, on impure
@@ -32,9 +32,9 @@ stdenv.mkDerivation rec {
   installFlags = ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"'';
 
   postFixup = ''
-    _moveToOutput bin/xml2-config "$dev"
-    _moveToOutput lib/xml2Conf.sh "$dev"
-    _moveToOutput share/man/man1 "$bin"
+    moveToOutput bin/xml2-config "$dev"
+    moveToOutput lib/xml2Conf.sh "$dev"
+    moveToOutput share/man/man1 "$bin"
   '';
 
   passthru = { inherit version; pythonSupport = true; };