diff --git a/pkgs/by-name/ru/rumdl/package.nix b/pkgs/by-name/ru/rumdl/package.nix index 58abb555c215..1449a2fc2e5f 100644 --- a/pkgs/by-name/ru/rumdl/package.nix +++ b/pkgs/by-name/ru/rumdl/package.nix @@ -9,26 +9,21 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rumdl"; - version = "0.1.1"; + version = "0.1.2"; src = fetchFromGitHub { owner = "rvben"; repo = "rumdl"; tag = "v${finalAttrs.version}"; - hash = "sha256-cJRJVo/YoSst5NJXAZPJFhXFM6Fmqy/UfuOK2OGLi2o="; + hash = "sha256-8K+jZL/yo7ur5WD+5+L+ZHhFkhYo83brgD6Gg1Xo6js="; }; - cargoHash = "sha256-Y1KqqDGEjp2+0BwdAgooBjPOQtGbNDwwuXFH97XvXb4="; + cargoHash = "sha256-dpHV5+DJLsjwvLkxtXOS7CYUNKXW57o0O541pO8vN5U="; cargoBuildFlags = [ "--bin=rumdl" ]; - # Non-specific tests often fail on Darwin (especially aarch64-darwin), - # on both Hydra and GitHub-hosted runners, even with __darwinAllowLocalNetworking enabled. - # proptest fails frequently - doCheck = false; - nativeCheckInputs = [ gitMinimal ]; @@ -36,13 +31,8 @@ rustPlatform.buildRustPackage (finalAttrs: { useNextest = true; cargoTestFlags = [ - "--profile ci" - ]; - - checkFlags = [ - # Skip Windows tests - "--skip comprehensive_windows_tests" - "--skip windows_vscode_tests" + # Prefer the "smoke" profile over "ci" to exclude flaky tests: https://github.com/rvben/rumdl/pull/341 + "--profile smoke" ]; doInstallCheck = true;