diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-13 20:39:15 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-13 20:39:15 -0700 |
commit | ec42db62a3ccf3c3be1a5cfbd1727d59806b8b71 (patch) | |
tree | b021f97a7dac89a3e9d32ab4ab70281ea394c10e | |
parent | a6389eb7de37330237bf4d9b8dc7d5a04846d3a9 (diff) | |
parent | 8b715d9c3fabdf4658ff4c0c500d01f74e7ed64e (diff) | |
download | spack-ec42db62a3ccf3c3be1a5cfbd1727d59806b8b71.tar.gz spack-ec42db62a3ccf3c3be1a5cfbd1727d59806b8b71.tar.bz2 spack-ec42db62a3ccf3c3be1a5cfbd1727d59806b8b71.tar.xz spack-ec42db62a3ccf3c3be1a5cfbd1727d59806b8b71.zip |
Merge pull request #547 from eschnett/eschnett/tmux
Update tmux
-rw-r--r-- | var/spack/repos/builtin/packages/tmux/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/tmux/package.py b/var/spack/repos/builtin/packages/tmux/package.py index 23d36db427..f2067d1366 100644 --- a/var/spack/repos/builtin/packages/tmux/package.py +++ b/var/spack/repos/builtin/packages/tmux/package.py @@ -7,10 +7,11 @@ class Tmux(Package): do a lot more. """ - homepage = "http://tmux.sourceforge.net" - url = "http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.9/tmux-1.9a.tar.gz" + homepage = "http://tmux.github.io" + url = "https://github.com/tmux/tmux/releases/download/2.1/tmux-2.1.tar.gz" version('1.9a', 'b07601711f96f1d260b390513b509a2d') + version('2.1', '74a2855695bccb51b6e301383ad4818c') depends_on('libevent') depends_on('ncurses') |