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

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