Merge pull request #153222 from ArnoutKroeze/dcnnt
This commit is contained in:
commit
1471da67ac
3 changed files with 34 additions and 0 deletions
|
@ -952,6 +952,12 @@
|
||||||
githubId = 59696216;
|
githubId = 59696216;
|
||||||
name = "Arnold Farkas";
|
name = "Arnold Farkas";
|
||||||
};
|
};
|
||||||
|
arnoutkroeze = {
|
||||||
|
email = "nixpkgs@arnoutkroeze.nl";
|
||||||
|
github = "arnoutkroeze";
|
||||||
|
githubId = 37151054;
|
||||||
|
name = "Arnout Kroeze";
|
||||||
|
};
|
||||||
arobyn = {
|
arobyn = {
|
||||||
email = "shados@shados.net";
|
email = "shados@shados.net";
|
||||||
github = "shados";
|
github = "shados";
|
||||||
|
|
26
pkgs/servers/dcnnt/default.nix
Normal file
26
pkgs/servers/dcnnt/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -20886,6 +20886,8 @@ with pkgs;
|
||||||
erlang = erlangR22;
|
erlang = erlangR22;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dcnnt = python3Packages.callPackage ../servers/dcnnt { };
|
||||||
|
|
||||||
dendrite = callPackage ../servers/dendrite { };
|
dendrite = callPackage ../servers/dendrite { };
|
||||||
|
|
||||||
dex-oidc = callPackage ../servers/dex { };
|
dex-oidc = callPackage ../servers/dex { };
|
||||||
|
|
Loading…
Reference in a new issue