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

2 years ago
with import <nixpkgs> {};
buildGoModule {
name = "systemd-vaultd";
src = ./.;
vendorSha256 = null;
checkInputs = [
2 years ago
python3.pkgs.pytest
2 years ago
golangci-lint
vault
2 years ago
];
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;
};
2 years ago
}
#mkShell {
# nativeBuildInputs = [
# go
# hivemind
# ];
#}