aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/misc/byobu
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/tools/misc/byobu
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/misc/byobu')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/misc/byobu/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/misc/byobu/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/misc/byobu/default.nix
new file mode 100644
index 000000000000..ad17c5edd6ee
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/misc/byobu/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, python3, perl, textual-window-manager }:
+
+stdenv.mkDerivation rec {
+ version = "5.133";
+ name = "byobu-" + version;
+
+ src = fetchurl {
+ url = "https://launchpad.net/byobu/trunk/${version}/+download/byobu_${version}.orig.tar.gz";
+ sha256 = "0qvmmdnvwqbgbhn5c8asmrmjhclcl029py2d2zvmd7h5ij7s93jd";
+ };
+
+ doCheck = true;
+
+ buildInputs = [ python3 perl ];
+ propagatedBuildInputs = [ textual-window-manager ];
+
+ meta = {
+ homepage = "https://launchpad.net/byobu/";
+ description = "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 ];
+ };
+}