about summary refs log tree commit diff
path: root/nix/readTree/tests/test-tree-traversal/default-nix/can-be-drv/default.nix
blob: 95d13d3c2750a6a24a8faf4875282e344ac7add0 (plain) (blame)
1
2
3
4
5
6
7
{ ... }:
derivation {
  name = "im-a-drv";
  system = builtins.currentSystem;
  builder = "/bin/sh";
  args = [ "-c" ''echo "" > $out'' ];
}