blob: 15706439a30ae8400c5ad1a6fd9d22bfa248a128 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{ stdenv
, lib
, python3
, fetchFromGitHub
, kdePackages
, gnome-themes-extra
, qt6
, makeWrapper
, x11Support ? stdenv.isLinux
# pypinput is marked as broken for darwin
, pynputSupport ? stdenv.isLinux
# Experimental Drag & Drop support requires x11 & pyinput suport
, hasDndSupport ? x11Support && pynputSupport
, enableDragAndDrop ? false
}:
lib.throwIf (enableDragAndDrop && !hasDndSupport)
"Drag and drop support is only available for linux with xorg."
python3.pkgs.buildPythonApplication rec {
pname = "tuifimanager";
version = "4.1.7";
format = "pyproject";
src = fetchFromGitHub {
owner = "GiorgosXou";
repo = "TUIFIManager";
rev = "v.${version}";
hash = "sha256-kljodLSSjvGcjhD7IhAVAAGd6LoiM6IYwMXuSsIJ198=";
};
nativeBuildInputs = [
python3.pkgs.setuptools
python3.pkgs.setuptools-scm
] ++ (lib.optionals enableDragAndDrop [
qt6.wrapQtAppsHook
makeWrapper
]);
propagatedBuildInputs = [
python3.pkgs.send2trash
python3.pkgs.unicurses
] ++ (lib.optionals enableDragAndDrop [
python3.pkgs.pynput
python3.pkgs.pyside6
python3.pkgs.requests
python3.pkgs.xlib
kdePackages.qtbase
kdePackages.qt6gtk2
]);
postFixup = let
# fix missing 'adwaita' warning missing with ncurses tui
# see: https://github.com/NixOS/nixpkgs/issues/60918
theme = gnome-themes-extra;
in
lib.optionalString enableDragAndDrop ''
wrapProgram $out/bin/tuifi \
--prefix GTK_PATH : "${theme}/lib/gtk-2.0" \
--set tuifi_synth_dnd True
'';
pythonImportsCheck = [ "TUIFIManager" ];
meta = {
description = "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";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ michaelBelsanti sigmanificient ];
mainProgram = "tuifi";
};
}
|