techknowlogick 2024-08-02 18:39:12 -04:00 committed by Alyssa Ross
parent d8e49dbc91
commit 9da01cee59
2 changed files with 2056 additions and 1223 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,13 +3,13 @@
rustPlatform.buildRustPackage rec {
pname = "svix-server";
version = "1.13.0";
version = "1.28.0";
src = fetchFromGitHub {
owner = "svix";
repo = "svix-webhooks";
rev = "v${version}";
hash = "sha256-6758ej7bTvwZPWifl239rQMazM8uw+Y4+3EbjE8XsTg=";
hash = "sha256-6GKb3tSO4yr2tMH7V5oOPSsWK4OLX0/Zqd2N+ZrIvls=";
};
sourceRoot = "${src.name}/server";
@ -17,8 +17,8 @@ rustPlatform.buildRustPackage rec {
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"aide-0.10.0" = "sha256-hUUer5D6OA4F0Co3JgygY3g89cKIChFest67ABIX+4M=";
"hyper-0.14.23" = "sha256-7MBCAjKYCdDbqCmYg3eYE74h7K7yTjfVoo0sjxr4g/s=";
"hyper-0.14.28" = "sha256-4HGGpM9Ce3l3EJnu5XsGfqhrD9EykpR+ihEJlSZc03Q=";
"omniqueue-0.2.1" = "sha256-ql3KJRs0SfLdo75vF2HlZT2zRDamDrORsWmK+Oj7m1Q=";
};
};
@ -50,5 +50,6 @@ rustPlatform.buildRustPackage rec {
"https://github.com/svix/svix-webhooks/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ techknowlogick ];
broken = stdenv.isx86_64 && stdenv.isDarwin; # aws-lc-sys currently broken on darwin x86_64
};
}