From 46055b5a233f2d5d7cefc399b8f0a922b0c64720 Mon Sep 17 00:00:00 2001 From: Zach Date: Mon, 11 Feb 2019 17:18:25 -0500 Subject: [PATCH] bvi: enable on darwin --- pkgs/applications/editors/bvi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/bvi/default.nix b/pkgs/applications/editors/bvi/default.nix index f3f44f769a99..f5e14ff1e096 100644 --- a/pkgs/applications/editors/bvi/default.nix +++ b/pkgs/applications/editors/bvi/default.nix @@ -16,6 +16,6 @@ stdenv.mkDerivation rec { homepage = http://bvi.sourceforge.net/download.html; license = licenses.gpl2; maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; }; }