about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-14 19:03:35 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-14 19:03:35 +0000
commit76a97fdb31e838f687524a21040aa7259107ff1c (patch)
tree7cd00248a625963ed33772f42383c837f557a218 /pkgs/build-support
parent137bf46ee71164f7a67778191bf40da9725e0f2d (diff)
libredirect: add description
Fixes #32675
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/libredirect/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/build-support/libredirect/default.nix b/pkgs/build-support/libredirect/default.nix
index bc777c7e6c74f..d13cdd681a219 100644
--- a/pkgs/build-support/libredirect/default.nix
+++ b/pkgs/build-support/libredirect/default.nix
@@ -14,5 +14,11 @@ stdenv.mkDerivation {
 
   meta = {
     platforms = stdenv.lib.platforms.linux;
+    description = "An LD_PRELOAD library to intercept and rewrite the paths in glibc calls";
+    longDescription = ''
+      libredirect is an LD_PRELOAD library to intercept and rewrite the paths in
+      glibc calls based on the value of $NIX_REDIRECTS, a colon-separated list
+      of path prefixes to be rewritten, e.g. "/src=/dst:/usr/=/nix/store/".
+    '';
   };
 }