From da37dc4af49fd42f7f74b2d3f6d9320f18d9830f Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Fri, 24 Jun 2016 21:05:13 +0200 Subject: [PATCH] mbuffer: disable darwin (its not supported) --- pkgs/tools/misc/mbuffer/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/mbuffer/default.nix b/pkgs/tools/misc/mbuffer/default.nix index 53696e62129b..51c0ebc82aeb 100644 --- a/pkgs/tools/misc/mbuffer/default.nix +++ b/pkgs/tools/misc/mbuffer/default.nix @@ -18,6 +18,6 @@ stdenv.mkDerivation rec { description = "mbuffer is a tool for buffering data streams with a large set of unique features"; license = stdenv.lib.licenses.gpl3; maintainers = with stdenv.lib.maintainers; [ tokudan ]; - platforms = with stdenv.lib.platforms; all; + platforms = with stdenv.lib.platforms; allBut darwin; }; }