8361b82d0a
In preparation for the solution of b/108, we need to consistently use `depot.third_party` for packages that are only packed in the TVL depot and `pkgs` for things that come from nixpkgs. This commit cleans up a huge chunk of these uses in //third_party Change-Id: Ic382c0cdea7330a84d5f0b7d109c824ddceb94e7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2912 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
11 lines
297 B
Nix
11 lines
297 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
depot.nix.buildGo.external {
|
|
path = "github.com/davecgh/go-spew";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "davecgh";
|
|
repo = "go-spew";
|
|
rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73";
|
|
sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y";
|
|
};
|
|
}
|