about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2024-05-20 08:57:53 +0200
committerGitHub <noreply@github.com>2024-05-20 08:57:53 +0200
commit0267e03fa51640eafc7196548d8db3b3675a0d9d (patch)
treed93cf0167d50bfde8101184286393ce9e0242265 /pkgs
parent0f6bec728b496fbfcc3b614ced5487621dbd55ea (diff)
parent48236dbe30b6eef18807f0dfe6cbb06cb9eb26db (diff)
Merge pull request #313043 from r-ryantm/auto-update/weather
weather: 2.4.4 -> 2.5.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/weather/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/weather/default.nix b/pkgs/applications/misc/weather/default.nix
index b17bca38d6e9d..6f2d2045dd29f 100644
--- a/pkgs/applications/misc/weather/default.nix
+++ b/pkgs/applications/misc/weather/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenv, fetchurl, python3, installShellFiles }:
 
 stdenv.mkDerivation rec {
-  version = "2.4.4";
+  version = "2.5.0";
   pname = "weather";
 
   src = fetchurl {
     url = "http://fungi.yuggoth.org/weather/src/${pname}-${version}.tar.xz";
-    sha256 = "sha256-uBwcntmLmIAztbIOHEDx0Y0/kcoJqAHqBOM2yBiRHrU=";
+    sha256 = "sha256-wn3cpgfrlqntMIiVFh4317DrbGgQ4YRnFz3KHXacTw4=";
   };
 
   nativeBuildInputs = [