12 lines
272 B
Nix
12 lines
272 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.package {
|
|
name = "webapi";
|
|
srcs = [
|
|
./structs.go
|
|
];
|
|
path = "hg.lukegb.com/lukegb/depot/go/trains/webapi";
|
|
}
|