Merge pull request #153222 from ArnoutKroeze/dcnnt

This commit is contained in:
legendofmiracles 2022-01-04 08:07:37 -06:00 committed by GitHub
commit 1471da67ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View File

@ -952,6 +952,12 @@
githubId = 59696216;
name = "Arnold Farkas";
};
arnoutkroeze = {
email = "nixpkgs@arnoutkroeze.nl";
github = "arnoutkroeze";
githubId = 37151054;
name = "Arnout Kroeze";
};
arobyn = {
email = "shados@shados.net";
github = "shados";

View File

@ -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 ];
};
}

View File

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