summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-09-27 02:13:47 +0200
committerJan Tojnar <jtojnar@gmail.com>2022-09-27 02:19:25 +0200
commit34d4ea2781a4d70aa71b6768280c2bf6af081953 (patch)
tree683e4f1266b8a39f3de7de071c411de4fbfeaf78
parenta5af361af4d6cda34611bde73e51e1d7bb438827 (diff)
downloadnixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.tar
nixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.tar.gz
nixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.tar.bz2
nixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.tar.lz
nixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.tar.xz
nixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.tar.zst
nixpkgs-34d4ea2781a4d70aa71b6768280c2bf6af081953.zip
libgweather: Fix update script downloading wrong version
Previous maintainer released version 40 but the current maintainer decided that it was a bad idea and continued with version 4. This was confusing our update script.
-rw-r--r--pkgs/development/libraries/libgweather/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libgweather/default.nix b/pkgs/development/libraries/libgweather/default.nix
index cae2095f8eb..bc9a0468584 100644
--- a/pkgs/development/libraries/libgweather/default.nix
+++ b/pkgs/development/libraries/libgweather/default.nix
@@ -74,6 +74,8 @@ stdenv.mkDerivation rec {
     updateScript = gnome.updateScript {
       packageName = pname;
       versionPolicy = "odd-unstable";
+      # Version 40.alpha preceded version 4.0.
+      freeze = "40.alpha";
     };
   };