depot/go/trains/darwin/darwingest/darwingestftp/default.nix

18 lines
421 B
Nix
Raw Permalink 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, ... }@args:
depot.third_party.buildGo.package {
name = "darwingestftp";
srcs = [
./darwingestftp.go
];
2024-11-16 15:30:41 +00:00
path = "git.lukegb.com/lukegb/depot/go/trains/darwin/darwingest/darwingestftp";
2021-11-18 22:24:20 +00:00
deps = with depot.third_party; [
gopkgs."github.com".jlaffaye.ftp
depot.go.trains.darwin
];
}