guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/17: gnu: vim-neocomplete: Don't use unstable tarball.


From: guix-commits
Subject: 05/17: gnu: vim-neocomplete: Don't use unstable tarball.
Date: Wed, 13 Nov 2019 16:08:50 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 6a9aa795ee23d953ec37140729eacb49a69cd277
Author: Efraim Flashner <address@hidden>
Date:   Wed Nov 13 21:36:00 2019 +0200

    gnu: vim-neocomplete: Don't use unstable tarball.
    
    * gnu/packages/vim.scm (vim-neocomplete)[source]: Download using
    git-fetch.
---
 gnu/packages/vim.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 29563a7..ae07bcd 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -234,13 +234,14 @@ with the editor vim.")))
     (version "2.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/Shougo/neocomplete.vim/";
-                           "archive/ver." version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/Shougo/neocomplete.vim";)
+              (commit (string-append "ver." version))))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "1307gbrdwam2akq9w2lpijc41740i4layk2qkd9sjkqxfch5lni2"))))
+         "1h6sci5mhdfg6sjsjpi8l5li02hg858zcayiwl60y9j2gqnd18lv"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f



reply via email to

[Prev in Thread] Current Thread [Next in Thread]