about summary refs log tree commit diff
path: root/tests/placeholders.sh
blob: 071cfe2dc8932b158a0d5b391810a12b6717951c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ]]
    ";
  }
'

echo XYZZY