aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/ifd.nix
blob: d0b9b54add074df1fbf7c896311dc82e5f5f8fc8 (plain)
1
2
3
4
5
6
7
8
9
10
with import ./config.nix;
import (
  mkDerivation {
    name = "foo";
    bla = import ./dependencies.nix {};
    buildCommand = "
      echo \\\"hi\\\" > $out
    ";
  }
)