depot/go/trains/cmd/train2livesplit/default.nix

13 lines
294 B
Nix
Raw Normal View History

2021-11-18 22:24:20 +00:00
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.program {
name = "train2livesplit";
srcs = [ ./train2livesplit.go ];
deps = with depot.third_party; [
depot.go.trains.webapi
];
}