14 lines
351 B
Nix
14 lines
351 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }:
|
||
|
depot.third_party.buildGo.program {
|
||
|
name = "twitternuke";
|
||
|
srcs = [ ./twitternuke.go ];
|
||
|
deps = [
|
||
|
depot.third_party.gopkgs."github.com".dghubble.oauth1
|
||
|
depot.third_party.gopkgs."golang.org".x.sync.errgroup
|
||
|
];
|
||
|
}
|