2020-10-04 00:07:59 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-10-04 00:25:36 +00:00
|
|
|
{ depot, ... }: {
|
|
|
|
archiver = depot.third_party.buildGo.program {
|
|
|
|
name = "archiver";
|
|
|
|
srcs = [ ./archiver/archiver.go ];
|
|
|
|
deps = [
|
|
|
|
depot.third_party.gopkgs."github.com".dghubble.oauth1
|
|
|
|
depot.third_party.gopkgs."github.com".jackc.pgx.v4
|
|
|
|
];
|
|
|
|
};
|
2020-10-04 00:07:59 +00:00
|
|
|
}
|