depot/go/tokend/default.nix

18 lines
376 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2022 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.program {
name = "tokend";
srcs = [
./tokend.go
./tokencache.go
./vaultissuer.go
];
deps = with depot.third_party; [
gopkgs."github.com".golang.glog
gopkgs."github.com".hashicorp.vault.api
];
}