summary refs log tree commit diff
path: root/pkgs/servers/http/openresty
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-26 19:54:51 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-05-05 11:52:08 +0200
commit3b9ef2c71b275c924c4b28caf2f8a765bfc75d14 (patch)
tree0d6fcf3d6474bdb436c0af0c975efd35df8cd6cf /pkgs/servers/http/openresty
parentb7c3c25218f8807920318ceb61b70f4343e0bd91 (diff)
downloadnixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar
nixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.gz
nixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.bz2
nixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.lz
nixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.xz
nixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.zst
nixpkgs-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.zip
fix "libc}/lib" and similar references
Done mostly without any verification.
I didn't bother with libc}/include, as the path is still correct.
Diffstat (limited to 'pkgs/servers/http/openresty')
-rw-r--r--pkgs/servers/http/openresty/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/http/openresty/default.nix b/pkgs/servers/http/openresty/default.nix
index 8444d49b91e..5c3a5a3e56f 100644
--- a/pkgs/servers/http/openresty/default.nix
+++ b/pkgs/servers/http/openresty/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
 
   preConfigure = ''
     export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2}/include/libxml2 $additionalFlags"
-    export PATH="$PATH:${stdenv.cc.libc}/sbin"
+    export PATH="$PATH:${stdenv.cc.libc.bin}/bin"
     patchShebangs .
   '';