about summary refs log tree commit diff
path: root/pkgs/applications/file-managers
diff options
context:
space:
mode:
authorSigmanificient <edhyjox@gmail.com>2024-04-04 05:40:41 +0200
committerSigmanificient <edhyjox@gmail.com>2024-04-04 05:41:06 +0200
commit3bdb11e52ad6ac9d4ae25b29785258c093ae9d55 (patch)
treee955c78229b364dbe5874abd5a75ad17e5201d4f /pkgs/applications/file-managers
parent1cc84c9efca8a67ff5461ecd477a4466af62bd0a (diff)
tuifimanager: migrate to by-name
Diffstat (limited to 'pkgs/applications/file-managers')
-rw-r--r--pkgs/applications/file-managers/tuifimanager/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/applications/file-managers/tuifimanager/default.nix b/pkgs/applications/file-managers/tuifimanager/default.nix
deleted file mode 100644
index a3c521344dfd2..0000000000000
--- a/pkgs/applications/file-managers/tuifimanager/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ lib
-, python3
-, fetchFromGitHub
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "tuifi-manager";
-  version = "3.3.5";
-  format = "pyproject";
-
-  src = fetchFromGitHub {
-    owner = "GiorgosXou";
-    repo = "TUIFIManager";
-    rev = "refs/tags/v.${version}";
-    hash = "sha256-O4cAHFurgF6QzpeAMoipX2/JywU1drZOTw/Ob9Pa8WQ=";
-  };
-
-  postPatch = ''
-    substituteInPlace pyproject.toml \
-      --replace "Send2Trash == 1.8.0" "Send2Trash >= 1.8.0"
-  '';
-
-  nativeBuildInputs = [
-    python3.pkgs.setuptools
-    python3.pkgs.setuptools-scm
-  ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    send2trash
-    unicurses
-  ];
-  pythonImportsCheck = [ "TUIFIManager" ];
-
-  meta = with lib; {
-    description = "A cross-platform terminal-based termux-oriented file manager";
-    longDescription = ''
-      A cross-platform terminal-based termux-oriented file manager (and component),
-      meant to be used with a Uni-Curses project or as is. This project is mainly an
-      attempt to get more attention to the Uni-Curses project.
-    '';
-    homepage = "https://github.com/GiorgosXou/TUIFIManager";
-    changelog = "https://github.com/GiorgosXou/TUIFIManager/blob/${src.rev}/CHANGELOG.md";
-    license = licenses.gpl3Only;
-    maintainers = with maintainers; [ michaelBelsanti sigmanificient ];
-    mainProgram = "tuifi";
-  };
-}