summaryrefslogtreecommitdiffstats
path: root/tests/fixtures/locked_dep/flake.nix
blob: 27d65be6f62476dee00cb9592cf28b928d91ca82 (plain)
1
2
3
4
5
6
7
8
9
10
{
  inputs.dep.url = "$depsPath";
  outputs =
    { self, dep }:
    {
      inherit self;
      dotSlashDot = toString dep;
      notOutPath = dep.outPath;
    };
}