about summary refs log tree commit diff
path: root/pkgs/tvl/default.nix
blob: 5150043de5e4ca7e813744b5e93cdbddfdfaa655 (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 = "d41ac7be6017250eeabfb92f38d5a104e2a8909f"; # 2022-05-09
    ref = "canon";
  }
, pkgs
}:

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