summary refs log tree commit diff
path: root/pkgs/tools/networking/atftp
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-04-30 23:56:43 +0300
committerNikolay Amiantov <ab@fmap.me>2016-05-01 00:13:23 +0300
commit87ebab128a466b6b3ac60711621ba6264cb7075a (patch)
tree1053a6f00009931dafa4d781298b27d26fb8ae53 /pkgs/tools/networking/atftp
parent3994a236bb004b8244ead60f0085a657121ed956 (diff)
replace ${stdenv.cc.cc}/lib occurences
Diffstat (limited to 'pkgs/tools/networking/atftp')
-rw-r--r--pkgs/tools/networking/atftp/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/atftp/default.nix b/pkgs/tools/networking/atftp/default.nix
index 5fff72a3b0751..bd4fb7e9e6af9 100644
--- a/pkgs/tools/networking/atftp/default.nix
+++ b/pkgs/tools/networking/atftp/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
   buildInputs = [ readline tcp_wrappers pcre makeWrapper gcc ];
   patches = [ debianPatch ];
   postInstall = ''
-    wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc}/lib${if stdenv.system == "x86_64-linux" then "64" else ""}
+    wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc.lib}/lib${if stdenv.system == "x86_64-linux" then "64" else ""}
   '';
   meta = {
     description = "Advanced tftp tools";