summary refs log tree commit diff
path: root/pkgs/tools/misc/byobu
diff options
context:
space:
mode:
authorJoachim Schiele <js@lastlog.de>2013-05-06 11:06:59 +0000
committerJoachim Schiele <js@lastlog.de>2013-05-06 11:06:59 +0000
commitfd8e249b5da4845f5b68419991e5d18c8e5a275d (patch)
tree9704084153afce497543f0a186471af19b92374b /pkgs/tools/misc/byobu
parentd0a58b35363c03e13f724eca6c1105995fa2090b (diff)
downloadnixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.tar
nixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.tar.gz
nixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.tar.bz2
nixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.tar.lz
nixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.tar.xz
nixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.tar.zst
nixlib-fd8e249b5da4845f5b68419991e5d18c8e5a275d.zip
byobu 5.37 integration
Diffstat (limited to 'pkgs/tools/misc/byobu')
-rw-r--r--pkgs/tools/misc/byobu/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/misc/byobu/default.nix b/pkgs/tools/misc/byobu/default.nix
new file mode 100644
index 000000000000..6766e0bb474f
--- /dev/null
+++ b/pkgs/tools/misc/byobu/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "byobu-5.37";
+
+  src = fetchurl {
+    url = "https://launchpad.net/byobu/trunk/5.37/+download/byobu_5.37.orig.tar.gz";
+    sha256 = "e9fec9c03ebdfbeb42d08e8e7a7e45d873e1a5d5f7984a39793e37fe7cc30688";
+  };
+
+  doCheck = true;
+
+  meta = {
+    homepage = https://launchpad.net/byobu/;
+    description = "Byobu is a GPLv3 open source text-based window manager and terminal multiplexer.";
+
+    longDescription =
+      ''Byobu is a GPLv3 open source text-based window manager and terminal multiplexer. 
+        It was originally designed to provide elegant enhancements to the otherwise functional, 
+        plain, practical GNU Screen, for the Ubuntu server distribution. 
+        Byobu now includes an enhanced profiles, convenient keybindings, 
+        configuration utilities, and toggle-able system status notifications for both 
+        the GNU Screen window manager and the more modern Tmux terminal multiplexer, 
+        and works on most Linux, BSD, and Mac distributions.
+      '';
+
+    license = stdenv.lib.licenses.gpl3;
+
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.qknight ];
+  };
+}