mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
mtprotoproxy: init at 1.0.5
This commit is contained in:
parent
9d11c30cf9
commit
2a69ddb69b
29
pkgs/servers/mtprotoproxy/default.nix
Normal file
29
pkgs/servers/mtprotoproxy/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, python, pyaes, pycrypto, wrapPython }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mtprotoproxy";
|
||||
version = "1.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alexbers";
|
||||
repo = "mtprotoproxy";
|
||||
rev = "v${version}";
|
||||
sha256 = "11jaz01cagmqadyxkks7dx41ggg6pp2l1ia9npqyrl2xhcxm5b0x";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ wrapPython ];
|
||||
pythonPath = [ pyaes pycrypto ];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 mtprotoproxy.py $out/bin/mtprotoproxy
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Async MTProto proxy for Telegram";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/alexbers/mtprotoproxy;
|
||||
platforms = python.meta.platforms;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
|
@ -14301,6 +14301,8 @@ in
|
|||
|
||||
mpdscribble = callPackage ../tools/misc/mpdscribble { };
|
||||
|
||||
mtprotoproxy = python3.pkgs.callPackage ../servers/mtprotoproxy { };
|
||||
|
||||
micro-httpd = callPackage ../servers/http/micro-httpd { };
|
||||
|
||||
miniHttpd = callPackage ../servers/http/mini-httpd {};
|
||||
|
|
Loading…
Reference in a new issue