depot/go/secretsmgr/default.nix
Luke Granger-Brown 165fc4559c go/secretsmgr: init
Currently this only handles signing SSH certificates, but let's see where we go from here.
2022-03-15 03:07:34 +00:00

15 lines
425 B
Nix

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.program {
name = "secretsmgr";
srcs = [ ./secretsmgr.go ];
deps = with depot.third_party; [
gopkgs."github.com".golang.glog
gopkgs."github.com".hashicorp.vault.api
gopkgs."github.com".coreos.go-systemd.v22.dbus
gopkgs."golang.org".x.crypto.ssh
];
}