mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
etcd: 3.5.16 -> 3.5.19 (#390981)
This commit is contained in:
commit
0f74f28c3a
1 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
buildGo123Module,
|
||||
fetchFromGitHub,
|
||||
symlinkJoin,
|
||||
nixosTests,
|
||||
|
@ -8,11 +8,11 @@
|
|||
}:
|
||||
|
||||
let
|
||||
version = "3.5.16";
|
||||
etcdSrcHash = "sha256-Y70wWwd+ErRyw6n/8FXNxWM2xcQgJGfnXytdfanfzF8=";
|
||||
etcdServerVendorHash = "sha256-nKwaB2zcrjDArjaOnvGFQndlB0HiOaKH4rY2VsQzfOc=";
|
||||
etcdUtlVendorHash = "sha256-i6EQSMyH89DJItC2n8lEinqJyZ0ACruH/nRSRIGETCk=";
|
||||
etcdCtlVendorHash = "sha256-xEySxidbBpfycKKTg+l5WExnZjhqg2mXbnLueUZOVKc=";
|
||||
version = "3.5.19";
|
||||
etcdSrcHash = "sha256-UulUIjl4HS1UHJnlamhtgVqzyH+UroCQ9zarxO5Hp6M=";
|
||||
etcdServerVendorHash = "sha256-0AXw44BpMlDQMML4HFQwdORetNrAZHlN2QG9aZwq5Ks=";
|
||||
etcdUtlVendorHash = "sha256-RZEsk79wQJnv/8W7tVCehNsqK2awkycd6gV/4OwqdFM=";
|
||||
etcdCtlVendorHash = "sha256-RESLrpgsWQV1Fm0vkQedlDowo+yWS4KipiwIcsCB34Y=";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "etcd-io";
|
||||
|
@ -33,7 +33,7 @@ let
|
|||
platforms = platforms.darwin ++ platforms.linux;
|
||||
};
|
||||
|
||||
etcdserver = buildGoModule {
|
||||
etcdserver = buildGo123Module {
|
||||
pname = "etcdserver";
|
||||
|
||||
inherit
|
||||
|
@ -58,7 +58,7 @@ let
|
|||
ldflags = [ "-X go.etcd.io/etcd/api/v3/version.GitSHA=GitNotFound" ];
|
||||
};
|
||||
|
||||
etcdutl = buildGoModule rec {
|
||||
etcdutl = buildGo123Module rec {
|
||||
pname = "etcdutl";
|
||||
|
||||
inherit
|
||||
|
@ -73,7 +73,7 @@ let
|
|||
modRoot = "./etcdutl";
|
||||
};
|
||||
|
||||
etcdctl = buildGoModule rec {
|
||||
etcdctl = buildGo123Module rec {
|
||||
pname = "etcdctl";
|
||||
|
||||
inherit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue