18 lines
564 B
Nix
18 lines
564 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/matttproud/golang_protobuf_extensions";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "matttproud";
|
||
|
repo = "golang_protobuf_extensions";
|
||
|
rev = "c182affec369e30f25d3eb8cd8a478dee585ae7d";
|
||
|
hash = "sha256:1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs";
|
||
|
};
|
||
|
deps = with depot.third_party; [
|
||
|
gopkgs."github.com".golang.protobuf.proto
|
||
|
];
|
||
|
}
|