nixpkgs/pkgs/servers/sozu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.2 KiB
Nix
Raw Normal View History

2023-06-26 20:08:16 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, darwin
, protobuf
, nix-update-script
, testers
, sozu
}:
2020-03-31 08:48:10 +00:00
rustPlatform.buildRustPackage rec {
pname = "sozu";
2024-01-25 22:26:36 +00:00
version = "0.15.19";
2020-03-31 08:48:10 +00:00
src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
2024-01-25 22:26:36 +00:00
hash = "sha256-9TSu27s/rnO48zEhBzaHaU3pHyIJ0LVZC8LBRhn0PNM=";
};
2020-03-31 08:48:10 +00:00
2024-01-25 22:26:36 +00:00
cargoHash = "sha256-h9igqV9YqMqRhqwsKYIji8WAVmcPQfErcPPm0PcDwss=";
2023-06-26 20:08:16 +00:00
nativeBuildInputs = [ protobuf ];
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;
2023-06-26 20:08:16 +00:00
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";
2023-07-11 17:38:50 +00:00
changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}";
2024-03-19 12:26:06 +00:00
license = licenses.agpl3Only;
2023-06-26 20:08:16 +00:00
maintainers = with maintainers; [ Br1ght0ne gaelreyrol ];
2023-09-15 12:15:51 +00:00
mainProgram = "sozu";
2023-08-09 21:21:37 +00:00
# error[E0432]: unresolved import `std::arch::x86_64`
broken = !stdenv.isx86_64;
};
}