depot/go/trains/webapi/summarize/default.nix
Luke Granger-Brown 7af28f3ef5 go/trains: split summarizeService into its own package
It might come in handy when sending push notifications to devices...
2021-11-20 19:12:47 +00:00

14 lines
383 B
Nix

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.package {
name = "summarize";
path = "hg.lukegb.com/lukegb/depot/go/trains/webapi/summarize";
srcs = [ ./service.go ];
deps = with depot.third_party; [
gopkgs."github.com".jackc.pgx.v4
depot.go.trains.webapi
];
}