diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-08-25 19:39:41 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-08-25 19:42:14 +0800 |
commit | 9a59673d26352ae40ffd6204d44d0664a4cda358 (patch) | |
tree | 6f069ed6cbc914f63ab9d19a83c4ab97c4e1d5ba /gnu | |
parent | 80700c4d6ac04648d74163235a50a18fa6710431 (diff) | |
download | guix-9a59673d26352ae40ffd6204d44d0664a4cda358.tar guix-9a59673d26352ae40ffd6204d44d0664a4cda358.tar.gz |
gnu: tmux: Update to 2.0.
* gnu/packages/tmux.scm (tmux): Update to 2.0.
Update source uri and home-page to github.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tmux.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index a5c0bb206e..69757a3162 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -28,20 +28,20 @@ (define-public tmux (package (name "tmux") - (version "1.9a") + (version "2.0") (source (origin (method url-fetch) (uri (string-append - "mirror://sourceforge/tmux/tmux/tmux-" + "https://github.com/tmux/tmux/releases/download/" version "/tmux-" version ".tar.gz")) (sha256 (base32 - "1x9k4wfd4l5jg6fh7xkr3yyilizha6ka8m5b1nr0kw8wj0mv5qy5")))) + "0qnkda8kb747vmbldjpb23ksv9pq3s65xhh1ja5rdsmh8r24npvr")))) (build-system gnu-build-system) (inputs `(("libevent" ,libevent) ("ncurses" ,ncurses))) - (home-page "http://tmux.sourceforge.net/") + (home-page "http://tmux.github.io/") (synopsis "Terminal multiplexer") (description "tmux is a terminal multiplexer: it enables a number of terminals (or |