32 lines
698 B
Nix
32 lines
698 B
Nix
{
|
|
buildPythonApplication,
|
|
fetchPypi,
|
|
lib,
|
|
pycryptodome,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "dcnnt";
|
|
version = "0.10.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-73ZLgb5YcXlAOjbKLVv8oqgS6pstBdJxa7LFUgIHpUE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pycryptodome
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cyanomiko/dcnnt-py";
|
|
description = "UI-less tool to connect Android phone with desktop";
|
|
longDescription = ''
|
|
Yet another tool to connect Android phone with desktop similar to
|
|
KDE Connect.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ arnoutkroeze ];
|
|
mainProgram = "dcnnt";
|
|
};
|
|
}
|