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 22:08:16 +02:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, darwin
, protobuf
, nix-update-script
, testers
, sozu
}:
2020-03-31 10:48:10 +02:00
rustPlatform.buildRustPackage rec {
pname = "sozu";
2023-11-15 11:08:13 +01:00
version = "0.15.15";
2020-03-31 10:48:10 +02:00
src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
2023-11-15 11:08:13 +01:00
hash = "sha256-zxGP2SWrq8beb+mJpgB39T7B1HpE76YP6se01vMewuw=";
};
2020-03-31 10:48:10 +02:00
2023-11-15 11:08:13 +01:00
cargoHash = "sha256-KqCDOWCMRYpBMsESTdhMEgTu6qAxcg4RHe252JBggqs=";
2023-06-26 22:08:16 +02:00
nativeBuildInputs = [ protobuf ];
2020-03-31 10:48:10 +02:00
buildInputs =
2021-01-15 08:07:56 +01:00
lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
2023-06-26 22:08:16 +02: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 19:38:50 +02:00
changelog = "https://github.com/sozu-proxy/sozu/releases/tag/${version}";
license = licenses.agpl3;
2023-06-26 22:08:16 +02:00
maintainers = with maintainers; [ Br1ght0ne gaelreyrol ];
2023-09-15 14:15:51 +02:00
mainProgram = "sozu";
2023-08-09 23:21:37 +02:00
# error[E0432]: unresolved import `std::arch::x86_64`
broken = !stdenv.isx86_64;
};
}