54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
darwin,
|
|
protobuf,
|
|
nix-update-script,
|
|
testers,
|
|
sozu,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sozu";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sozu-proxy";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Cda53lhKPxm2w8guoKuQjdjhZNWJinzR1PHc5S57y2w=";
|
|
};
|
|
|
|
cargoHash = "sha256-DCiPy9bU56ocWwQ8sTVZ5T9eMi1ifj3enCHPuC2x6aY=";
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Security;
|
|
|
|
doCheck = false;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
package = sozu;
|
|
command = "sozu --version";
|
|
version = "${version}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
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.agpl3Only;
|
|
maintainers = with maintainers; [
|
|
Br1ght0ne
|
|
gaelreyrol
|
|
];
|
|
mainProgram = "sozu";
|
|
# error[E0432]: unresolved import `std::arch::x86_64`
|
|
broken = !stdenv.hostPlatform.isx86_64;
|
|
};
|
|
}
|