Merge pull request #233910 from aaronjheng/envconsul

envconsul: 0.13.1 -> 0.13.2
This commit is contained in:
Weijia Wang 2023-05-25 11:55:22 +03:00 committed by GitHub
commit 2778483624
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, testers, envconsul }:
buildGoModule rec {
pname = "envconsul";
version = "0.13.1";
version = "0.13.2";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "envconsul";
rev = "v${version}";
sha256 = "sha256-9X0mSEMaLGdchf9g5EyRUsn7z6cvbG4QBPoaris7RwQ=";
hash = "sha256-GZU1lEAI3k5EUU/z4gHR8plECudwp+YYyPSk7E0NQtI=";
};
vendorSha256 = "sha256-Vunq3lsM1aSXNIr3ZMqE03f0jEI5BpWwMYhZ41tiB9M=";
vendorHash = "sha256-ehxeupO8CrKqkqK11ig7Pj4XTh61VOE4rT2T2SsChxw=";
ldflags = [
"-s"
@ -19,10 +19,14 @@ buildGoModule rec {
"-X github.com/hashicorp/envconsul/version.Name=envconsul"
];
passthru.tests.version = testers.testVersion {
package = envconsul;
version = "v${version}";
};
meta = with lib; {
homepage = "https://github.com/hashicorp/envconsul/";
description = "Read and set environmental variables for processes from Consul";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
maintainers = with maintainers; [ pradeepchhetri ];
};