ci/eval: add rebuildsByPlatform to the comparison result (#363751)
[NixPkgs.git] / pkgs / test / stdenv-inputs / default.nix
blobe52dd0a68c54179a39a1548257e4bed4e7e31b68
1 { lib, stdenv }:
3 let
4   foo = stdenv.mkDerivation {
5     name = "foo-test";
7     dontUnpack = true;
9     installPhase = ''
10       mkdir -p $out/bin $out/include $out/lib
11       $CC -o $out/bin/foo ${./cc-main.c}
12       chmod +x $out/bin/foo
13       cp ${./foo.c} $out/include/foo.h
14       $CC -shared \
15         ${lib.optionalString stdenv.hostPlatform.isDarwin "-Wl,-install_name,$out/lib/libfoo.dylib"} \
16         -o $out/lib/libfoo${stdenv.hostPlatform.extensions.sharedLibrary} \
17         ${./foo.c}
18     '';
19   };
21   bar = stdenv.mkDerivation {
22     name = "bar-test";
23     outputs = [
24       "out"
25       "dev"
26     ];
28     dontUnpack = true;
30     installPhase = ''
31       mkdir -p $out/bin $dev/include $dev/lib
32       $CC -o $out/bin/bar ${./cc-main.c}
33       chmod +x $out/bin/bar
34       cp ${./bar.c} $dev/include/bar.h
35       $CC -shared \
36         ${lib.optionalString stdenv.hostPlatform.isDarwin "-Wl,-install_name,$dev/lib/libbar.dylib"} \
37         -o $dev/lib/libbar${stdenv.hostPlatform.extensions.sharedLibrary} \
38         ${./bar.c}
39     '';
40   };
43 stdenv.mkDerivation {
44   name = "stdenv-inputs-test";
45   phases = [ "buildPhase" ];
47   buildInputs = [
48     foo
49     bar
50   ];
52   buildPhase = ''
53     env
55     printf "checking whether binaries are available... " >&2
56     foo && bar
58     printf "checking whether compiler can find headers... " >&2
59     $CC -o include-check ${./include-main.c}
60     ./include-check
62     printf "checking whether compiler can find headers... " >&2
63     $CC -o include-check ${./include-main.c}
64     ./include-check
66     printf "checking whether compiler can find libraries... " >&2
67     $CC -lfoo -lbar -o lib-check ${./lib-main.c}
68     ./lib-check
70     touch $out
71   '';
73   meta.platforms = lib.platforms.all;