Merge pull request #242888 from gaelreyrol/sozu-update-0.15.1

sozu: 0.15.0 -> 0.15.1
This commit is contained in:
Nick Cao 2023-07-12 09:30:19 +08:00 committed by GitHub
commit 38f69649f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2496 deletions

File diff suppressed because it is too large Load Diff

View File

@ -11,29 +11,22 @@
rustPlatform.buildRustPackage rec {
pname = "sozu";
version = "0.15.0";
version = "0.15.1";
src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
hash = "sha256-lbBwmi8MrcWr6AXzl9upnXw8ZEWyDGEWr+txE4dujWs=";
hash = "sha256-/0scNFOWDbL5SaXOC+/DGFE5OgJx1WkdruM+yFV6n1M=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
cargoHash = "sha256-SVfAo7jsYIhgYHP4pity62TU1aGoH6E8UysJ/Gw+rDk=";
nativeBuildInputs = [ protobuf ];
buildInputs =
lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
postPatch = ''
# update Cargo.lock to fix build
ln -sf ${./Cargo.lock} Cargo.lock
'';
doCheck = false;
passthru = {
@ -49,6 +42,7 @@ rustPlatform.buildRustPackage rec {
description =
"Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
homepage = "https://www.sozu.io";
changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}";
license = licenses.agpl3;
maintainers = with maintainers; [ Br1ght0ne gaelreyrol ];
platforms = [ "x86_64-linux" ];