13 lines
356 B
Nix
13 lines
356 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }: depot.third_party.buildGo.program {
|
||
|
name = "twitterchiver";
|
||
|
srcs = [ ./archiver/archiver.go ];
|
||
|
deps = [
|
||
|
depot.third_party.gopkgs."github.com".dghubble.oauth1
|
||
|
depot.third_party.gopkgs."github.com".jackc.pgx.v4
|
||
|
];
|
||
|
}
|