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
388 B
Nix

{pkgs ? import <nixpkgs> {}}:
2 years ago
pkgs.buildGoModule {
name = "systemd-vaultd";
src = ./.;
vendorSha256 = null;
meta = with pkgs.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;
};
}