guix-commits
[Top][All Lists]
Advanced

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

198/203: gnu: emacs-company-restclient: Don't use unstable tarball.


From: guix-commits
Subject: 198/203: gnu: emacs-company-restclient: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 14:57:49 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 71ff571454577eb8213f466fd45be5a516017304
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:42:06 2019 +0200

    gnu: emacs-company-restclient: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-company-restclient)[source]: Use 
GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/emacs-xyz.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5745b50..5c4c3ba 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11379,14 +11379,13 @@ the current upstream.")
     (version "0.1.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/iquiw/company-restclient/archive/";
-             "v" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/iquiw/company-restclient.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
+        (base32 "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-company" ,emacs-company)



reply via email to

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