Skip to content

Commit

Permalink
Don't build the mbuffer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Feb 12, 2023
1 parent 5ffe33a commit a9b4d9c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/tools/misc/mbuffer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@ stdenv.mkDerivation rec {
which
];

doCheck = true;
doCheck = false;

buildPhase = ''
make mbuffer
'';

meta = with lib; {
description = "A tool for buffering data streams with a large set of unique features";
homepage = "https://www.maier-komor.de/mbuffer.html";
license = licenses.gpl3Only;
maintainers = with maintainers; [ tokudan ];
platforms = platforms.linux; # Maybe other non-darwin Unix
platforms = platforms.unix;
};
}

0 comments on commit a9b4d9c

Please sign in to comment.