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
    ";
  }
)