sozu: 0.15.0 -> 0.15.1

This commit is contained in:
Gaël Reyrol 2023-07-11 19:38:50 +02:00
parent a72142410d
commit ba6d1f7d6a
No known key found for this signature in database
GPG key ID: DFB9B69A2C427F61
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 { rustPlatform.buildRustPackage rec {
pname = "sozu"; pname = "sozu";
version = "0.15.0"; version = "0.15.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sozu-proxy"; owner = "sozu-proxy";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-lbBwmi8MrcWr6AXzl9upnXw8ZEWyDGEWr+txE4dujWs="; hash = "sha256-/0scNFOWDbL5SaXOC+/DGFE5OgJx1WkdruM+yFV6n1M=";
}; };
cargoLock = { cargoHash = "sha256-SVfAo7jsYIhgYHP4pity62TU1aGoH6E8UysJ/Gw+rDk=";
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [ protobuf ]; nativeBuildInputs = [ protobuf ];
buildInputs = buildInputs =
lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
postPatch = ''
# update Cargo.lock to fix build
ln -sf ${./Cargo.lock} Cargo.lock
'';
doCheck = false; doCheck = false;
passthru = { passthru = {
@ -49,6 +42,7 @@ rustPlatform.buildRustPackage rec {
description = description =
"Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures"; "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
homepage = "https://www.sozu.io"; homepage = "https://www.sozu.io";
changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}";
license = licenses.agpl3; license = licenses.agpl3;
maintainers = with maintainers; [ Br1ght0ne gaelreyrol ]; maintainers = with maintainers; [ Br1ght0ne gaelreyrol ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];