From e05feccc46802d5ccc2ebc54fee18b29446fbce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Tue, 22 Sep 2020 07:45:17 +0200 Subject: [PATCH] weather: enable on all Unix platforms --- 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 454831a391d..7894bc2f5e4 100644 --- a/pkgs/applications/misc/weather/default.nix +++ b/pkgs/applications/misc/weather/default.nix @@ -43,6 +43,6 @@ stdenv.mkDerivation rec { description = "Quick access to current weather conditions and forecasts"; license = licenses.isc; maintainers = [ maintainers.matthiasbeyer ]; - platforms = platforms.linux ++ platforms.darwin; + platforms = platforms.unix; }; }