rekado pushed a commit to branch master
in repository guix.
commit 82a0787c06aca9b6c01295c7f1d3b3f354c83693
Author: Ricardo Wurmus <[email protected]>
Date: Thu Nov 29 22:17:22 2018 +0100
gnu: tmate: Fetch sources from git.
* gnu/packages/terminals.scm (tmate)[source]: Fetch from git.
---
gnu/packages/terminals.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index c8f3a17..18da27f 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -875,13 +875,14 @@ per-line fullscreen terminal rendering, and keyboard
input event reporting.")
(version "2.2.1")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/tmate-io/tmate/archive/"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tmate-io/tmate.git")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "01f3hhm3x0sd6apyb1ajkjfdfvq5m2759w00yp2slr9fyicsrhnr"))))
+ "0pfl9vrswzim9ydi1n652h3rax2zrmy6sqkp0r09yy3lw83h4y1r"))))
(build-system gnu-build-system)
(inputs
`(("libevent" ,libevent)