Unverified Commit 53319b58 authored by zowoq's avatar zowoq Committed by GitHub
Browse files

rumdl: 0.1.1 -> 0.1.2 (#484473)

parents 36cab25b d6a89887
Loading
Loading
Loading
Loading
+5 −15
Original line number Diff line number Diff line
@@ -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;