nixpkgs/pkgs/servers/sozu/default.nix

27 lines
707 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, darwin }:
2020-03-31 08:48:10 +00:00
rustPlatform.buildRustPackage rec {
pname = "sozu";
2021-03-09 19:17:20 +00:00
version = "0.11.56";
2020-03-31 08:48:10 +00:00
src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
2021-03-09 19:17:20 +00:00
sha256 = "sha256-/XyBzhZCsX9sGk+iTFlDnblWfDCZdI4b9yfo4Z+Wp1U=";
};
2020-03-31 08:48:10 +00:00
cargoSha256 = "sha256-xnps3/i6BpzdwUAQmb8aoOPc39L2P52y/ZDAeLoEIU8=";
2020-03-31 08:48:10 +00:00
buildInputs =
2021-01-15 07:07:56 +00:00
lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
meta = with lib; {
description =
"Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
homepage = "https://www.sozu.io";
license = licenses.agpl3;
maintainers = with maintainers; [ Br1ght0ne ];
};
}