sozu: 0.11.46 -> 0.11.50; fix Darwin build

This commit is contained in:
happysalada 2020-11-01 16:34:16 +09:00
parent cfed29bfcb
commit de694b3a14

View File

@ -1,22 +1,26 @@
{ stdenv, rustPlatform, fetchFromGitHub }: { stdenv, rustPlatform, fetchFromGitHub, darwin }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "sozu"; pname = "sozu";
version = "0.11.46"; version = "0.11.50";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sozu-proxy"; owner = "sozu-proxy";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0anng5qvdx9plxs9qqr5wmjjz0gx5113jq28xwbxaaklvd4ni7cm"; sha256 = "1srg2b8vwc4vp07kg4fizqj1rbm9hvf6hj1mjdh6yvb9cpbw3jz7";
}; };
cargoSha256 = "19c2s9h4jk9pff72wdqw384mvrf40d8x4sx7qysnpb4hayq2ijh3"; cargoSha256 = "5WOigCiQZQ5DaTd15vV8pUh8Xl3UIe9yLG1ptUtY+iA=";
meta = with stdenv.lib; { buildInputs =
description = "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures"; stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
homepage = "https://sozu.io";
license = licenses.agpl3; meta = with stdenv.lib; {
maintainers = with maintainers; [ filalex77 ]; description =
}; "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
homepage = "https://www.sozu.io";
license = licenses.agpl3;
maintainers = with maintainers; [ filalex77 ];
};
} }