diff --git a/.gitignore b/.gitignore index 3c2977f..9e3ae6d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,12 @@ .DS_Store .idea *.log -systemd-vault + +# binary +systemd-vaultd + +# nix-build symlinks +result* # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/default.nix b/default.nix index f57f2fd..c46ef00 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,7 @@ with import {}; buildGoModule { - name = "systemd-vault"; + name = "systemd-vaultd"; src = ./.; vendorSha256 = null; checkInputs = [ @@ -11,7 +11,7 @@ buildGoModule { ]; meta = with lib; { 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; maintainers = with maintainers; [ mic92 ]; platforms = platforms.unix; diff --git a/go.mod b/go.mod index 27db5fc..18ea0a7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/numtide/systemd-vault +module github.com/numtide/systemd-vaultd go 1.17