etcd_3_4: 3.4.28 -> 3.4.37 (#430420)

This commit is contained in:
Ulrik Strid 2025-08-11 20:52:40 +02:00 committed by GitHub
commit df43ae7b8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 8 deletions

View File

@ -6,33 +6,41 @@
buildGoModule rec { buildGoModule rec {
pname = "etcd"; pname = "etcd";
version = "3.4.28"; version = "3.4.37";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "etcd-io"; owner = "etcd-io";
repo = "etcd"; repo = "etcd";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-M0iD05Wk3pC56kGKeIb0bfMUpy9idMKin0+DYhBo/cw="; hash = "sha256-PZ+8hlxSwayR1yvjHmStMDur9e1uc2s+YB8qdz+42mA=";
}; };
vendorHash = "sha256-DbDIz/cbXqYHaGqNqP+wYpuiaFiZYElRXmQwBXnCbMk="; proxyVendor = true;
vendorHash = "sha256-VeB0A+freNwgETQMIokiOPWovGq1FANUexnzxVg2aRA=";
preBuild = ''
go mod tidy
'';
buildPhase = '' buildPhase = ''
runHook preBuild
patchShebangs . patchShebangs .
./build ./build
./functional/build ./functional/build
runHook postBuild
''; '';
doCheck = false; doCheck = false;
installPhase = '' postInstall = ''
install -Dm755 bin/* bin/functional/cmd/* -t $out/bin install -Dm755 bin/* bin/functional/cmd/* -t $out/bin
''; '';
meta = with lib; { meta = {
description = "Distributed reliable key-value store for the most critical data of a distributed system"; description = "Distributed reliable key-value store for the most critical data of a distributed system";
license = licenses.asl20; downloadPage = "https://github.com/etcd-io/etcd/";
license = lib.licenses.asl20;
homepage = "https://etcd.io/"; homepage = "https://etcd.io/";
maintainers = with maintainers; [ offline ]; maintainers = with lib.maintainers; [ ];
}; };
} }

View File

@ -10043,7 +10043,7 @@ with pkgs;
}; };
etcd = etcd_3_5; etcd = etcd_3_5;
etcd_3_4 = callPackage ../servers/etcd/3.4.nix { }; etcd_3_4 = callPackage ../servers/etcd/3_4 { };
etcd_3_5 = callPackage ../servers/etcd/3_5 { etcd_3_5 = callPackage ../servers/etcd/3_5 {
buildGoModule = buildGo123Module; buildGoModule = buildGo123Module;
}; };