Profpatsch/nix/readTree/tests/test-tree-traversal/default-nix/can-be-drv/default.nix
1
2
3
4
5
6
7
{ ... }:
derivation {
  name = "im-a-drv";
  system = "x86_64-linux";
  builder = "/bin/sh";
  args = [ "-c" ''echo "" > $out'' ];
}