about summary refs log tree commit diff
path: root/third_party/nix/tests/placeholders.sh
blob: cd1bb7bc2aacbf87f1808b629ddf99bff65cf0e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
source common.sh

clearStore

nix-build --no-out-link -E '
  with import ./config.nix;

  mkDerivation {
    name = "placeholders";
    outputs = [ "out" "bin" "dev" ];
    buildCommand = "
      echo foo1 > $out
      echo foo2 > $bin
      echo foo3 > $dev
      [[ $(cat ${placeholder "out"}) = foo1 ]]
      [[ $(cat ${placeholder "bin"}) = foo2 ]]
      [[ $(cat ${placeholder "dev"}) = foo3 ]]
    ";
  }
'