rename project to systemd-vaultd

main
Jörg Thalheim 2 years ago
parent 6dd1f41212
commit 42f4092d84
No known key found for this signature in database

7
.gitignore vendored

@ -1,7 +1,12 @@
.DS_Store .DS_Store
.idea .idea
*.log *.log
systemd-vault
# binary
systemd-vaultd
# nix-build symlinks
result*
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/

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

@ -1,3 +1,3 @@
module github.com/numtide/systemd-vault module github.com/numtide/systemd-vaultd
go 1.17 go 1.17

Loading…
Cancel
Save