diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:22:56 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:06 +0200 |
commit | 4ccf99d65be4b3ba74034739385c13f5a6b58d62 (patch) | |
tree | 7b12a2987f9b5853428b29b45ede7d43cde83ce3 /gnu/packages | |
parent | 4f8fd64cf5b4d61ee30049268f4b0a61266f0e0e (diff) | |
download | guix-4ccf99d65be4b3ba74034739385c13f5a6b58d62.tar.gz guix-4ccf99d65be4b3ba74034739385c13f5a6b58d62.zip |
gnu: emacs-nginx-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-nginx-mode)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 319442fc5a..a8c671dd4a 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5887,14 +5887,13 @@ extensibility.") (version "1.1.9") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/ajc/nginx-mode/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ajc/nginx-mode.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0bzyrj6zz1hm67bkhw23bam7qc869s3zg7m1rb1c3aa4n0aw90cq")))) + (base32 "17dh5pr3gh6adrbqx588gimxbb2fr7iv2qrxv6r48w2727l344xs")))) (build-system emacs-build-system) (home-page "https://github.com/ajc/nginx-mode") (synopsis "Emacs major mode for editing nginx config files") |