summary refs log tree commit diff
path: root/pkgs/applications/editors/vim
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2014-06-28 20:33:28 +0200
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2014-06-28 21:06:10 +0200
commite10001042d6fc2b4246f51b5fa1625b8bf7e8df3 (patch)
treef01e3e8ab58fb4474dc16df523257def2d05771f /pkgs/applications/editors/vim
parent9b7dbcc83e2b8c8fcb37bc204bba83311e17eca0 (diff)
downloadnixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.tar
nixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.tar.gz
nixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.tar.bz2
nixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.tar.lz
nixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.tar.xz
nixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.tar.zst
nixpkgs-e10001042d6fc2b4246f51b5fa1625b8bf7e8df3.zip
fetchbzr, fetchdarcs, fetchhg: use `rev` attr
This makes it match the behaviour of fetchgit and fetchsvn, so it's
easier to write scripts that support all of them.
Diffstat (limited to 'pkgs/applications/editors/vim')
-rw-r--r--pkgs/applications/editors/vim/configurable.nix2
-rw-r--r--pkgs/applications/editors/vim/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index 9e2abffc451..e0d8de157b0 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -21,7 +21,7 @@ composableDerivation {
         # latest release
       args.fetchhg {
             url = "https://vim.googlecode.com/hg/";
-            tag = "v7-4-316";
+            rev = "v7-4-316";
             sha256 = "0scxx33p1ky0wihk04xqpd6rygp1crm0hx446zbjwbsjj6xxn7sx";
       };
 
diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix
index 357de6249fa..bf947280173 100644
--- a/pkgs/applications/editors/vim/default.nix
+++ b/pkgs/applications/editors/vim/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
 
   src = fetchhg {
     url = "https://vim.googlecode.com/hg/";
-    tag = "v7-4-316";
+    rev = "v7-4-316";
     sha256 = "0scxx33p1ky0wihk04xqpd6rygp1crm0hx446zbjwbsjj6xxn7sx";
   };