14 lines
298 B
Nix
14 lines
298 B
Nix
# SPDX-FileCopyrightText: 2023 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.program {
|
|
name = "tumblrandom";
|
|
srcs = [
|
|
./tumblrandom.go
|
|
];
|
|
deps = with depot; [
|
|
third_party.gopkgs."golang.org".x.oauth2
|
|
];
|
|
}
|