summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorStéphane Jourdois <sjourdois@gmail.com>2015-11-11 11:23:13 +0100
committerStéphane Jourdois <sjourdois@gmail.com>2015-11-11 11:26:10 +0100
commit4d7ed592a00925df1ed1b20165a10366454b7175 (patch)
tree3bb9cb891a38c5a30463ce64e8290180246c190b /pkgs/tools/misc
parent39a996731e5b7268937a30a15606e8dedda8263a (diff)
downloadnixlib-4d7ed592a00925df1ed1b20165a10366454b7175.tar
nixlib-4d7ed592a00925df1ed1b20165a10366454b7175.tar.gz
nixlib-4d7ed592a00925df1ed1b20165a10366454b7175.tar.bz2
nixlib-4d7ed592a00925df1ed1b20165a10366454b7175.tar.lz
nixlib-4d7ed592a00925df1ed1b20165a10366454b7175.tar.xz
nixlib-4d7ed592a00925df1ed1b20165a10366454b7175.tar.zst
nixlib-4d7ed592a00925df1ed1b20165a10366454b7175.zip
byobu: 5.87 -> 5.98
Make byobu depend on either tmux or screen. tmux is default, you can
use screen by changing textual-window-manager to screen.
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/byobu/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/misc/byobu/default.nix b/pkgs/tools/misc/byobu/default.nix
index 4491905de4fc..a536321fc74e 100644
--- a/pkgs/tools/misc/byobu/default.nix
+++ b/pkgs/tools/misc/byobu/default.nix
@@ -1,16 +1,18 @@
-{ stdenv, fetchurl, ncurses, python, perl }:
+{ stdenv, fetchurl, ncurses, python, perl, textual-window-manager }:
 
 stdenv.mkDerivation rec {
-  name = "byobu-5.87";
+  version = "5.98";
+  name = "byobu-" + version;
 
   src = fetchurl {
-    url = "https://launchpad.net/byobu/trunk/5.87/+download/byobu_5.87.orig.tar.gz";
-    sha256 = "08v9y5hxb92caf5zp83fiq0jfwi167vw1ylf42s65x1ng8rvryqh";
+    url = "https://launchpad.net/byobu/trunk/${version}/+download/byobu_${version}.orig.tar.gz";
+    sha256 = "1s8nh4wbds1nh52i0d1hy1b308jjf4siwpq92lna1zh9ll4x71j5";
   };
 
   doCheck = true;
 
   buildInputs = [ python perl ];
+  propagatedBuildInputs = [ textual-window-manager ];
 
   meta = {
     homepage = https://launchpad.net/byobu/;