17 lines
410 B
Nix
17 lines
410 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }@args:
|
|
depot.third_party.buildGo.package {
|
|
name = "darwingests3";
|
|
srcs = [
|
|
./darwingests3.go
|
|
];
|
|
path = "hg.lukegb.com/lukegb/depot/go/trains/darwin/darwingest/darwingests3";
|
|
deps = with depot.third_party; [
|
|
gopkgs."gocloud.dev".blob
|
|
|
|
depot.go.trains.darwin
|
|
];
|
|
}
|