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.

26 lines
517 B
Nix

with import <nixpkgs> {};
buildGoModule {
name = "systemd-vault";
src = ./.;
vendorSha256 = null;
checkInputs = [
python3.pkgs.pytest
golangci-lint
vault
];
meta = with lib; {
description = "A proxy for secrets between systemd services and vault";
homepage = "https://github.com/numtide/systemd-vault";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
};
}
#mkShell {
# nativeBuildInputs = [
# go
# hivemind
# ];
#}