15 lines
392 B
Nix
15 lines
392 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/google/wire";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "google";
|
||
|
repo = "wire";
|
||
|
rev = "v0.5.0";
|
||
|
hash = "sha256:038c7ss7fgihh76b4lnsm7dhhhq4kjwm06f8radw454g5jdg467p";
|
||
|
};
|
||
|
}
|