pkgs/fastn: 0.4.87 -> 0.4.99

This commit is contained in:
Gabriel Arazas 2025-03-14 12:47:48 +08:00
parent 66783bb070
commit cedc85e1ab
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 10 additions and 4924 deletions

4910
pkgs/fastn/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,25 +1,21 @@
{ lib, rustPlatform, fetchFromGitHub, cmake, pkg-config, openssl }: { lib, rustPlatform, fetchFromGitHub, cmake, pkg-config, openssl }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage (finalAttrs: {
pname = "fastn"; pname = "fastn";
version = "0.4.87"; version = "0.4.99";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fastn-stack"; owner = "fastn-stack";
repo = pname; repo = finalAttrs.pname;
rev = "f405500da3f3263f11b97ded059aeef9866a3454"; rev = finalAttrs.version;
hash = "sha256-nIq89Owf2znBYsdpq+2LpzplBdrnRldYa1at4VqiD3Q="; hash = "sha256-oomlLE0lha1b9N7CvQKsvlvcLZ8+f5aWjTWqzzgBDUk=";
}; };
cargoLock = { cargoHash = "sha256-6WXhxHDqlPJLBgG2VkEQgMV58s6MiAAhQkLQOPBtqpo=";
lockFile = ./Cargo.lock; cargoBuildFeatures = [ "edition2024" ];
outputHashes = { useFetchCargoVendor = true;
"fastn-observer-0.1.0" = "sha256-D7ch6zB1xw54vGbpcQ3hf+zG11Le/Fy01W3kHhc8bOg=";
};
};
OPENSSL_NO_VENDOR = "1"; nativeBuildInputs = [ rustPlatform.bindgenHook cmake pkg-config ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ openssl ]; buildInputs = [ openssl ];
checkFlags = [ "--skip=tests::fbt" ]; checkFlags = [ "--skip=tests::fbt" ];
@ -31,4 +27,4 @@ rustPlatform.buildRustPackage rec {
maintainers = with maintainers; [ foo-dogsquared ]; maintainers = with maintainers; [ foo-dogsquared ];
mainProgram = "fastn"; mainProgram = "fastn";
}; };
} })