about summary refs log tree commit diff
path: root/pkgs/tools/misc/tmuxp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/tmuxp/default.nix')
-rw-r--r--pkgs/tools/misc/tmuxp/default.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/tools/misc/tmuxp/default.nix b/pkgs/tools/misc/tmuxp/default.nix
deleted file mode 100644
index 6964cb5ace4e..000000000000
--- a/pkgs/tools/misc/tmuxp/default.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ lib, python3Packages, fetchPypi, installShellFiles }:
-
-let
-  pname = "tmuxp";
-  version = "1.47.0";
-  hash = "sha256-HYY6CEUPpZVvVK9kV4Ehw4wGk5YfIVSkZ0+qqf6Nz4c=";
-in
-python3Packages.buildPythonApplication {
-  inherit pname version;
-  pyproject = true;
-
-  src = fetchPypi {
-    inherit pname version hash;
-  };
-
-  nativeBuildInputs = [
-    python3Packages.poetry-core
-    python3Packages.shtab
-    installShellFiles
-  ];
-
-  propagatedBuildInputs = with python3Packages; [
-    colorama
-    libtmux
-    pyyaml
-  ];
-
-  # No tests in archive
-  doCheck = false;
-
-  postInstall = ''
-    installShellCompletion --cmd tmuxp \
-      --bash <(shtab --shell=bash -u tmuxp.cli.create_parser) \
-      --zsh <(shtab --shell=zsh -u tmuxp.cli.create_parser)
-  '';
-
-  meta = {
-    description = "tmux session manager";
-    homepage = "https://tmuxp.git-pull.com/";
-    changelog = "https://github.com/tmux-python/tmuxp/raw/v${version}/CHANGES";
-    license = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ otavio ];
-    mainProgram = "tmuxp";
-  };
-}