Skip to content

Commit

Permalink
Merge pull request NixOS#286933 from a-n-n-a-l-e-e/pdu-ignore-test
Browse files Browse the repository at this point in the history
parallel-disk-usage: ignore broken test
  • Loading branch information
a-n-n-a-l-e-e authored Feb 8, 2024
2 parents 8291480 + 8bb910d commit a5d28c9
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/by-name/pa/parallel-disk-usage/package.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
lib,
fetchFromGitHub,
rustPlatform,
stdenv,
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "parallel-disk-usage";
Expand All @@ -17,14 +15,17 @@ rustPlatform.buildRustPackage rec {

cargoHash = "sha256-Jk9sNvApq4t/FoEzfjlDT2Td5sr38Jbdo6RoaOVQJK8=";

checkFlags = [
# test example is ordered wrong on some systems
# https://github.com/KSXGitHub/parallel-disk-usage/issues/251
"--skip=multiple_names"
];

meta = with lib; {
description = "Highly parallelized, blazing fast directory tree analyzer";
homepage = "https://github.com/KSXGitHub/parallel-disk-usage";
license = licenses.asl20;
maintainers = [maintainers.peret];
mainProgram = "pdu";
# broken due to unit test failure
# https://github.com/KSXGitHub/parallel-disk-usage/issues/251
broken = stdenv.isLinux && stdenv.isAarch64;
};
}

0 comments on commit a5d28c9

Please sign in to comment.