about summary refs log tree commit diff
path: root/lib/tests/flakes/subflakeTest/flake.nix
blob: 3a8edd5e8c508a7bb17afffd3a939bfeacb5c606 (plain) (blame)
1
2
3
4
5
6
7
8
{
  outputs = { self, subflake, callLocklessFlake }: rec {
    x = (callLocklessFlake {
      path = subflake;
      inputs = {};
    }).subflakeOutput;
  };
}