about summary refs log tree commit diff
path: root/pkgs/build-support/libredirect/default.nix
blob: e92945a4030cacad5f26b37d5d5ccd9189c25051 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ stdenv, coreutils }:

stdenv.mkDerivation {
  name = "libredirect-0";

  unpackPhase = ''
    cp ${./libredirect.c} libredirect.c
    cp ${./test.c} test.c
  '';

  libName = "libredirect" + stdenv.targetPlatform.extensions.sharedLibrary;

  buildPhase = ''
    $CC -Wall -std=c99 -O3 -shared libredirect.c \
      -o "$libName" -fPIC -ldl

    if [ -n "$doInstallCheck" ]; then
      $CC -Wall -std=c99 -O3 test.c -o test
    fi
  '';

  installPhase = ''
    install -vD "$libName" "$out/lib/$libName"
  '';

  doInstallCheck = true;

  installCheckPhase = if stdenv.isDarwin then ''
    NIX_REDIRECTS="/foo/bar/test=${coreutils}/bin/true" \
    DYLD_INSERT_LIBRARIES="$out/lib/$libName" \
    DYLD_FORCE_FLAT_NAMESPACE=1 ./test
  '' else ''
    NIX_REDIRECTS="/foo/bar/test=${coreutils}/bin/true" \
    LD_PRELOAD="$out/lib/$libName" ./test
  '';

  meta = {
    platforms = stdenv.lib.platforms.unix;
    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/".
    '';
  };
}