0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

etcd: 3.5.16 -> 3.5.19 (#390981)

This commit is contained in:
Christina Sørensen 2025-04-22 07:00:11 +01:00 committed by GitHub
commit 0f74f28c3a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
{ {
lib, lib,
buildGoModule, buildGo123Module,
fetchFromGitHub, fetchFromGitHub,
symlinkJoin, symlinkJoin,
nixosTests, nixosTests,
@ -8,11 +8,11 @@
}: }:
let let
version = "3.5.16"; version = "3.5.19";
etcdSrcHash = "sha256-Y70wWwd+ErRyw6n/8FXNxWM2xcQgJGfnXytdfanfzF8="; etcdSrcHash = "sha256-UulUIjl4HS1UHJnlamhtgVqzyH+UroCQ9zarxO5Hp6M=";
etcdServerVendorHash = "sha256-nKwaB2zcrjDArjaOnvGFQndlB0HiOaKH4rY2VsQzfOc="; etcdServerVendorHash = "sha256-0AXw44BpMlDQMML4HFQwdORetNrAZHlN2QG9aZwq5Ks=";
etcdUtlVendorHash = "sha256-i6EQSMyH89DJItC2n8lEinqJyZ0ACruH/nRSRIGETCk="; etcdUtlVendorHash = "sha256-RZEsk79wQJnv/8W7tVCehNsqK2awkycd6gV/4OwqdFM=";
etcdCtlVendorHash = "sha256-xEySxidbBpfycKKTg+l5WExnZjhqg2mXbnLueUZOVKc="; etcdCtlVendorHash = "sha256-RESLrpgsWQV1Fm0vkQedlDowo+yWS4KipiwIcsCB34Y=";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "etcd-io"; owner = "etcd-io";
@ -33,7 +33,7 @@ let
platforms = platforms.darwin ++ platforms.linux; platforms = platforms.darwin ++ platforms.linux;
}; };
etcdserver = buildGoModule { etcdserver = buildGo123Module {
pname = "etcdserver"; pname = "etcdserver";
inherit inherit
@ -58,7 +58,7 @@ let
ldflags = [ "-X go.etcd.io/etcd/api/v3/version.GitSHA=GitNotFound" ]; ldflags = [ "-X go.etcd.io/etcd/api/v3/version.GitSHA=GitNotFound" ];
}; };
etcdutl = buildGoModule rec { etcdutl = buildGo123Module rec {
pname = "etcdutl"; pname = "etcdutl";
inherit inherit
@ -73,7 +73,7 @@ let
modRoot = "./etcdutl"; modRoot = "./etcdutl";
}; };
etcdctl = buildGoModule rec { etcdctl = buildGo123Module rec {
pname = "etcdctl"; pname = "etcdctl";
inherit inherit