Files

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

48 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
rustPlatform,
cargo-expand,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "flutter_rust_bridge_codegen";
version = "2.11.1";
src = fetchFromGitHub {
owner = "fzyzcjy";
repo = "flutter_rust_bridge";
tag = "v${version}";
hash = "sha256-Us+LwT6tjBcTl2xclVsiLauSlIO8w+PiokpiDB+h1fI=";
fetchSubmodules = true;
};
cargoHash = "sha256-pxEwcLiRB95UBfXb+JgS8duEXiZUApH/C8Exus5TkfU=";
cargoBuildFlags = "--package flutter_rust_bridge_codegen";
cargoTestFlags = "--package flutter_rust_bridge_codegen";
# needed to get tests running
nativeBuildInputs = [ cargo-expand ];
# needed to run text (see https://github.com/fzyzcjy/flutter_rust_bridge/blob/ae970bfafdf80b9eb283a2167b972fb2e6504511/frb_codegen/src/library/utils/logs.rs#L43)
logLevel = "debug";
checkFlags = [
# Disabled because these tests need a different version of anyhow than the package itself
"--skip=tests::test_execute_generate_on_frb_example_dart_minimal"
"--skip=tests::test_execute_generate_on_frb_example_pure_dart"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Timeout on darwin, not related to networking in sandbox
"--skip=library::codegen::controller::tests::test_run_with_watch"
"--skip=library::codegen::generator::api_dart::tests::test_functions"
];
meta = {
mainProgram = "flutter_rust_bridge_codegen";
description = "Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple";
homepage = "https://fzyzcjy.github.io/flutter_rust_bridge";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.eymeric ];
};
}