14 lines
431 B
Nix
14 lines
431 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.external {
|
|
path = "github.com/mitchellh/go-testing-interface";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "mitchellh";
|
|
repo = "go-testing-interface";
|
|
rev = "v1.14.0";
|
|
hash = "sha256:1v3vb3f0a8g33ii99c13agrnw8rsjjz8zfkcl64bvkcdafj7w2cz";
|
|
};
|
|
}
|