argocd-vault-plugin: fix version output
This commit is contained in:
parent
4fef1f7abf
commit
f582ed985b
1 changed files with 20 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
{ buildGoModule, fetchFromGitHub, lib }:
|
{ buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
, testers
|
||||||
|
, argocd-vault-plugin
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "argocd-vault-plugin";
|
pname = "argocd-vault-plugin";
|
||||||
|
@ -13,9 +18,23 @@ buildGoModule rec {
|
||||||
|
|
||||||
vendorHash = "sha256-0PrGrcS8Gx0cVImGrlmXlycFgWCTLjg2ISi0OhYoPpw=";
|
vendorHash = "sha256-0PrGrcS8Gx0cVImGrlmXlycFgWCTLjg2ISi0OhYoPpw=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-X=github.com/argoproj-labs/argocd-vault-plugin/version.Version=v${version}"
|
||||||
|
"-X=github.com/argoproj-labs/argocd-vault-plugin/version.BuildDate=1970-01-01T00:00:00Z"
|
||||||
|
"-X=github.com/argoproj-labs/argocd-vault-plugin/version.CommitSHA=unknown"
|
||||||
|
];
|
||||||
|
|
||||||
# integration tests require filesystem and network access for credentials
|
# integration tests require filesystem and network access for credentials
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
doInstallCheck = true;
|
||||||
|
|
||||||
|
passthru.tests.version = testers.testVersion {
|
||||||
|
package = argocd-vault-plugin;
|
||||||
|
command = "argocd-vault-plugin version";
|
||||||
|
version = "argocd-vault-plugin v${version} (unknown) BuildDate: 1970-01-01T00:00:00Z";
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://argocd-vault-plugin.readthedocs.io";
|
homepage = "https://argocd-vault-plugin.readthedocs.io";
|
||||||
changelog = "https://github.com/argoproj-labs/argocd-vault-plugin/releases/tag/v${version}";
|
changelog = "https://github.com/argoproj-labs/argocd-vault-plugin/releases/tag/v${version}";
|
||||||
|
|
Loading…
Reference in a new issue