Merge pull request #32677 from orivej/libredirect

libredirect: add description
This commit is contained in:
Jörg Thalheim 2017-12-14 11:28:22 -08:00 committed by GitHub
commit 0530e12eb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/".
'';
};
}