about summary refs log tree commit diff
path: root/pkgs/tvl/default.nix
blob: 3ec851aa285c8ef9947b431f35803c81b37b9ba2 (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 = "ebd701b221a7df872b4514aa758c7e410fedc3c8"; # 2022-06-03
    ref = "canon";
  }
, pkgs
}:

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