2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python, pyaes, pycrypto, uvloop, wrapPython }:
|
2019-06-09 09:18:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "mtprotoproxy";
|
2023-04-27 17:29:51 +01:00
|
|
|
version = "1.1.1";
|
2019-06-09 09:18:59 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alexbers";
|
|
|
|
repo = "mtprotoproxy";
|
|
|
|
rev = "v${version}";
|
2023-04-27 17:29:51 +01:00
|
|
|
sha256 = "sha256-tQ6e1Y25V4qAqBvhhKdirSCYzeALfH+PhNtcHTuBurs=";
|
2019-06-09 09:18:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ wrapPython ];
|
2019-09-26 20:48:03 +01:00
|
|
|
pythonPath = [ pyaes pycrypto uvloop ];
|
2019-06-09 09:18:59 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 mtprotoproxy.py $out/bin/mtprotoproxy
|
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-06-09 09:18:59 +01:00
|
|
|
description = "Async MTProto proxy for Telegram";
|
|
|
|
license = licenses.mit;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/alexbers/mtprotoproxy";
|
2019-06-09 09:18:59 +01:00
|
|
|
platforms = python.meta.platforms;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "mtprotoproxy";
|
2019-06-09 09:18:59 +01:00
|
|
|
};
|
|
|
|
}
|