summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2016-10-29 17:14:45 -0400
committerGitHub <noreply@github.com>2016-10-29 17:14:45 -0400
commitd8e6f48eee54fefb1bc74e275a62eea40bd0ff21 (patch)
tree849f4d3ebb28887969b8580a41c4f99c2f94156c /pkgs/applications/version-management
parentcff04e550375cd11863268f1e2990b2a5e7433cb (diff)
parentc9ba92c31787c664619f94bc423cb5efcace68a3 (diff)
downloadnixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.tar
nixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.tar.gz
nixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.tar.bz2
nixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.tar.lz
nixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.tar.xz
nixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.tar.zst
nixlib-d8e6f48eee54fefb1bc74e275a62eea40bd0ff21.zip
Merge pull request #19978 from k0ral/nixos-unstable
mercurial, tortoisehg: 3.9.1 -> 3.9.2
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/mercurial/default.nix4
-rw-r--r--pkgs/applications/version-management/tortoisehg/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix
index 82fcfcfb2384..026d1b9f9832 100644
--- a/pkgs/applications/version-management/mercurial/default.nix
+++ b/pkgs/applications/version-management/mercurial/default.nix
@@ -4,7 +4,7 @@
 
 let
   # if you bump version, update pkgs.tortoisehg too or ping maintainer
-  version = "3.9.1";
+  version = "3.9.2";
   name = "mercurial-${version}";
   inherit (python2Packages) docutils hg-git dulwich python;
 in
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "https://mercurial-scm.org/release/${name}.tar.gz";
-    sha256 = "0x6zjl8za6nnlbmyxng4pfrr2h77zi3wbg985262ghjyx33lypk2";
+    sha256 = "1kw3cpcjygfapvi5c123limhpbkmg7is2i81pybk1s05gi16l139";
   };
 
   inherit python; # pass it so that the same version can be used in hg2git
diff --git a/pkgs/applications/version-management/tortoisehg/default.nix b/pkgs/applications/version-management/tortoisehg/default.nix
index 754b7df5153f..e5c704f71c71 100644
--- a/pkgs/applications/version-management/tortoisehg/default.nix
+++ b/pkgs/applications/version-management/tortoisehg/default.nix
@@ -2,11 +2,11 @@
 
 pythonPackages.buildPythonApplication rec {
     name = "tortoisehg-${version}";
-    version = "3.9.1";
+    version = "3.9.2";
 
     src = fetchurl {
       url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
-      sha256 = "12bqvkkwkb6m5hls7gipkxbnspfrk1k6l9l0fff0wp1zajnp4pnn";
+      sha256 = "17wcsf91z7dnb7c8vyagasj5vvmas6ms5lx1ny4pnm94qzslkfh2";
     };
 
     pythonPath = with pythonPackages; [ pyqt4 mercurial qscintilla iniparse ];