about summary refs log tree commit diff
path: root/pkgs/servers/dcnnt
diff options
context:
space:
mode:
authorArnout Kroeze <git@arnoutkroeze.nl>2022-01-03 15:59:09 +0100
committerArnout Kroeze <git@arnoutkroeze.nl>2022-01-03 15:59:09 +0100
commite6421b0549aeeaf7d9240b12c97f556fd46324a2 (patch)
tree328f143dc4ddab96183a60b511f06e6021cb55a3 /pkgs/servers/dcnnt
parente6e1bb9be8b381201c26c7000e6308bfe835aebc (diff)
dcnnt: Init at 0.6.0
Diffstat (limited to 'pkgs/servers/dcnnt')
-rw-r--r--pkgs/servers/dcnnt/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/servers/dcnnt/default.nix b/pkgs/servers/dcnnt/default.nix
new file mode 100644
index 0000000000000..0cab4a326c580
--- /dev/null
+++ b/pkgs/servers/dcnnt/default.nix
@@ -0,0 +1,26 @@
+{ buildPythonApplication, fetchPypi, lib, pycryptodome }:
+
+buildPythonApplication rec {
+  pname = "dcnnt";
+  version = "0.6.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "ef8578526163cb3e25fa352ba2f6f4d39309f477a72282416c89eddfb69c3a91";
+  };
+
+  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 ];
+  };
+}