From b06070c2bb4bdb59b3439eb65b020b2e92b7916f Mon Sep 17 00:00:00 2001 From: Zach Coyle Date: Mon, 21 Sep 2020 18:13:52 -0400 Subject: [PATCH] weather: enable on darwin --- pkgs/applications/misc/weather/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/weather/default.nix b/pkgs/applications/misc/weather/default.nix index f44b5f1f56a3..fdfed065321f 100644 --- a/pkgs/applications/misc/weather/default.nix +++ b/pkgs/applications/misc/weather/default.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { description = "Quick access to current weather conditions and forecasts"; license = licenses.isc; maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.linux; # my only platform + platforms = platforms.linux ++ platforms.darwin; }; }