You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
398 B
Nix

with import <nixpkgs> {};
buildGoModule {
name = "systemd-vaultd";
src = ./.;
vendorSha256 = null;
meta = with lib; {
description = "A proxy for secrets between systemd services and vault";
homepage = "https://github.com/numtide/systemd-vaultd";
license = licenses.mit;
maintainers = with maintainers; [mic92];
platforms = platforms.unix;
};
}