about summary refs log tree commit diff
path: root/pkgs/tvl/default.nix
blob: 878055fb88bfc9cc35ef13f8050ef9932c00ddd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ tvlSrc ? builtins.fetchGit {
    name = "tvl-depot";
    url = "https://code.tvl.fyi";
    rev = "b29ef90636cfe0ce21aaa95301105079f4709fed" # 2022-09-28
    ref = "canon";
  }
, pkgs
}:

import tvlSrc {
  nixpkgsBisectPath = pkgs.path; # TODO: does this improve eval time significantly?
}