about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-01-21 19:08:48 +0000
committerPeter Simons <simons@cryp.to>2012-01-21 19:08:48 +0000
commit680787f13e915e1c9884d86f876f07b620f6e7a7 (patch)
tree2bd0f68afd40834a6d81a034c487405886715e7f
parent58b19bd365d05a2140d47119d1e73ca3bdb5d1fb (diff)
mercurial: updated to version 2.0.2
svn path=/nixpkgs/trunk/; revision=31775
-rw-r--r--pkgs/applications/version-management/mercurial/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix
index 8d4a45a496c43..976963e684bd2 100644
--- a/pkgs/applications/version-management/mercurial/default.nix
+++ b/pkgs/applications/version-management/mercurial/default.nix
@@ -2,14 +2,14 @@
 , guiSupport ? false, tk ? null, ssl, curses }:
 
 let
-  name = "mercurial-2.0";
+  name = "mercurial-2.0.2";
 in
 stdenv.mkDerivation {
   inherit name;
 
   src = fetchurl {
     url = "http://mercurial.selenic.com/release/${name}.tar.gz";
-    sha256 = "1565ns768vgvsqx6pn5q9r2670lmvq8y4zy0jwgwfx2h9n5bgymg";
+    sha256 = "ca8b8fb93f2e3e8c3cdf2f81d87e92592f5f20c5bfcaaeb6a75550d4a69572c9";
   };
 
   inherit python; # pass it so that the same version can be used in hg2git
@@ -49,7 +49,7 @@ stdenv.mkDerivation {
 
   meta = {
     description = "A fast, lightweight SCM system for very large distributed projects";
-    homepage = http://www.selenic.com/mercurial/;
+    homepage = "http://www.selenic.com/mercurial/";
     license = "GPLv2";
   };
 }