Merge pull request #98195 from zachcoyle/weather-enable-darwin

weather: enable on darwin
This commit is contained in:
Daniël de Kok 2020-09-22 06:48:09 +02:00 committed by GitHub
commit 748aa38cb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
}