about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-05-20 03:07:37 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-05-20 03:07:37 +0000
commit48236dbe30b6eef18807f0dfe6cbb06cb9eb26db (patch)
tree73ca18c8164ac1e86afa515d2a0857da826719da
parent454d208c022ea7b3fe9007dafaf3a617f74fcd44 (diff)
weather: 2.4.4 -> 2.5.0
-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 = [