summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-05-03 02:14:31 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-05-03 11:14:31 +0200
commit045078f096c82b59c1ccc5e233441528059952af (patch)
treeef0f2b4e51ffab24be94691044a8593320f441b5
parent07f53c71e8818c6cba5f32de1ebc5b00811c8f51 (diff)
downloadnixpkgs-045078f096c82b59c1ccc5e233441528059952af.tar
nixpkgs-045078f096c82b59c1ccc5e233441528059952af.tar.gz
nixpkgs-045078f096c82b59c1ccc5e233441528059952af.tar.bz2
nixpkgs-045078f096c82b59c1ccc5e233441528059952af.tar.lz
nixpkgs-045078f096c82b59c1ccc5e233441528059952af.tar.xz
nixpkgs-045078f096c82b59c1ccc5e233441528059952af.tar.zst
nixpkgs-045078f096c82b59c1ccc5e233441528059952af.zip
tortoisehg: 4.9 -> 4.9.1 (#60806)
* tortoisehg: 4.9 -> 4.9.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tortoisehg/versions

* tortoisehg: update meta.homepage
-rw-r--r--pkgs/applications/version-management/tortoisehg/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/version-management/tortoisehg/default.nix b/pkgs/applications/version-management/tortoisehg/default.nix
index 9e42880dd7d..2cca53d6fe7 100644
--- a/pkgs/applications/version-management/tortoisehg/default.nix
+++ b/pkgs/applications/version-management/tortoisehg/default.nix
@@ -2,11 +2,11 @@
 
 python2Packages.buildPythonApplication rec {
     name = "tortoisehg-${version}";
-    version = "4.9";
+    version = "4.9.1";
 
     src = fetchurl {
       url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
-      sha256 = "01na1ymdlh9nd121gmq3vkssr183sd2fcwjfdnq5n5fpys6bazjc";
+      sha256 = "0c5gp5wyaiyh8w2zzy1q0f2qv8aa3219shb6swpsdzqr2j9gkk4b";
     };
 
     pythonPath = with python2Packages; [ pyqt4 mercurial qscintilla iniparse ];
@@ -30,7 +30,7 @@ python2Packages.buildPythonApplication rec {
 
     meta = {
       description = "Qt based graphical tool for working with Mercurial";
-      homepage = http://tortoisehg.bitbucket.org/;
+      homepage = https://tortoisehg.bitbucket.io/;
       license = lib.licenses.gpl2;
       platforms = lib.platforms.linux;
       maintainers = with lib.maintainers; [ danbst ];