Luke Granger-Brown
165fc4559c
Currently this only handles signing SSH certificates, but let's see where we go from here.
15 lines
425 B
Nix
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
|
|
];
|
|
}
|