nixpkgs/pkgs/servers/sozu/default.nix

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

27 lines
706 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-08-22 20:30:17 +00:00
version = "0.13.6";
2020-03-31 08:48:10 +00:00
src = fetchFromGitHub {
owner = "sozu-proxy";
repo = pname;
rev = version;
2021-08-22 20:30:17 +00:00
sha256 = "sha256-C2wIkneOh6t8gjoHRYMRorAKEVvM3R+NRZbG9hhCE5A=";
};
2020-03-31 08:48:10 +00:00
2021-08-22 20:30:17 +00:00
cargoSha256 = "sha256-Ej2/X1aQ8uRdZKpVRT4+AzhDWMv/sT8GrCitUmkrHmI=";
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 ];
};
}