summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorAllan Espinosa <allan.espinosa@outlook.com>2014-11-02 09:43:19 +0900
committerAllan Espinosa <allan.espinosa@outlook.com>2014-11-03 22:15:58 +0900
commitc6089871bb6278d1a579474725b5a6a633648046 (patch)
treefc1d47b602576a3ca2c0dc0b2b9530ef4e44eb4a /pkgs/applications/editors
parent21880ab6fb2622e2bd13049c0807ab1f9300b5f4 (diff)
downloadnixlib-c6089871bb6278d1a579474725b5a6a633648046.tar
nixlib-c6089871bb6278d1a579474725b5a6a633648046.tar.gz
nixlib-c6089871bb6278d1a579474725b5a6a633648046.tar.bz2
nixlib-c6089871bb6278d1a579474725b5a6a633648046.tar.lz
nixlib-c6089871bb6278d1a579474725b5a6a633648046.tar.xz
nixlib-c6089871bb6278d1a579474725b5a6a633648046.tar.zst
nixlib-c6089871bb6278d1a579474725b5a6a633648046.zip
Use fetchurl and the exact release tag
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vim/macvim.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix
index d7156321f1db..0003779a52e2 100644
--- a/pkgs/applications/editors/vim/macvim.nix
+++ b/pkgs/applications/editors/vim/macvim.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, ncurses, gettext,
+{ stdenv, fetchurl, ncurses, gettext,
   pkgconfig, cscope, python, ruby, tcl, perl, luajit
 }:
 
@@ -7,10 +7,8 @@ stdenv.mkDerivation rec {
 
   version = "7.4.479";
 
-  src = fetchFromGitHub {
-    owner = "genoma";
-    repo = "macvim";
-    rev = "f9c084b97fa9d5cad2448dfd3eff3d9b7f0fac59";
+  src = fetchurl {
+    url = "https://github.com/genoma/macvim/archive/g-snapshot-21.tar.gz";
     sha256 = "1f6l39s6cgyzzr9ix729axmc299mpl29abbc7571g4vply17m7nv";
   };