dcnnt: Init at 0.6.0

main
Arnout Kroeze 2 years ago
parent e6e1bb9be8
commit e6421b0549
  1. 26
      pkgs/servers/dcnnt/default.nix
  2. 2
      pkgs/top-level/all-packages.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 ];
};
}

@ -20872,6 +20872,8 @@ with pkgs;
erlang = erlangR22;
};
dcnnt = python3Packages.callPackage ../servers/dcnnt { };
dendrite = callPackage ../servers/dendrite { };
dex-oidc = callPackage ../servers/dex { };

Loading…
Cancel
Save