summary refs log tree commit diff
path: root/pkgs/servers/sozu/default.nix
blob: f7feda5e916c304b144003477a93ed95abdf6f16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
    pname = "sozu";
    version = "0.11.46";

    src = fetchFromGitHub {
        owner = "sozu-proxy";
        repo = pname;
        rev = version;
        sha256 = "0anng5qvdx9plxs9qqr5wmjjz0gx5113jq28xwbxaaklvd4ni7cm";
    };

    cargoSha256 = "19c2s9h4jk9pff72wdqw384mvrf40d8x4sx7qysnpb4hayq2ijh3";

    meta = with stdenv.lib; {
        description = "Open Source HTTP Reverse Proxy built in Rust for Immutable Infrastructures";
        homepage = "https://sozu.io";
        license = licenses.agpl3;
        maintainers = with maintainers; [ filalex77 ];
    };
}