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

2 years ago
{ 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;
2 years ago
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
};
}