about summary refs log tree commit diff
path: root/pkgs/tvl/default.nix
blob: f84e3fa37ff222798ec8009573797a453bf5c593 (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 = "98371362f25202f8afae3949b618b0db78d5ea1d";
    ref = "canon";
  }
, pkgs
}:

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