From a9b4d9c14639d3f77a5bab3884549cbe2cb28804 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 6 Feb 2023 10:48:07 -0800 Subject: [PATCH] Don't build the mbuffer tests --- pkgs/tools/misc/mbuffer/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/mbuffer/default.nix b/pkgs/tools/misc/mbuffer/default.nix index c7f14cf6a5823..313ff5b0e8011 100644 --- a/pkgs/tools/misc/mbuffer/default.nix +++ b/pkgs/tools/misc/mbuffer/default.nix @@ -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; }; }