depot/third_party/gopkgs/google.golang.org/protobuf/default.nix
Luke Granger-Brown 4f3356727a go/trains: use protos for defining the web API
This will probably be useful later when I make the web app...
2021-11-20 19:06:43 +00:00

14 lines
415 B
Nix

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.external {
path = "google.golang.org/protobuf";
src = depot.third_party.nixpkgs.fetchFromGitHub {
owner = "protocolbuffers";
repo = "protobuf-go";
rev = "v1.27.1";
sha256 = "sha256:0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2";
};
}