Skip to content

Commit

Permalink
Merge pull request NixOS#10962 from sjourdois/byobu
Browse files Browse the repository at this point in the history
byobu: 5.87 -> 5.98
  • Loading branch information
qknight committed Nov 15, 2015
2 parents 2002420 + 4d7ed59 commit 47545e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
10 changes: 6 additions & 4 deletions pkgs/tools/misc/byobu/default.nix
Original file line number Diff line number Diff line change
@@ -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/;
Expand Down
5 changes: 4 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,10 @@ let

bwm_ng = callPackage ../tools/networking/bwm-ng { };

byobu = callPackage ../tools/misc/byobu { };
byobu = callPackage ../tools/misc/byobu {
# Choices: [ tmux screen ];
textual-window-manager = tmux;
};

bsh = fetchurl {
url = http://www.beanshell.org/bsh-2.0b5.jar;
Expand Down

0 comments on commit 47545e4

Please sign in to comment.