Merge pull request #295233 from oluceps/add-moproxy
moproxy: init at 0.5.1
This commit is contained in:
commit
455a72cb5d
40
pkgs/by-name/mo/moproxy/package.nix
Normal file
40
pkgs/by-name/mo/moproxy/package.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, fetchurl
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec{
|
||||||
|
pname = "moproxy";
|
||||||
|
version = "0.5.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sorz";
|
||||||
|
repo = "moproxy";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-Rqno+cg44IWBJbKWUP6BnxzwCjuNhFo9nBF6u2jlyA4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-EunlvI7I6d93wb3hxgxsyAXkzxRlDu0fq9qqjnbzzWg=";
|
||||||
|
|
||||||
|
preBuild =
|
||||||
|
let
|
||||||
|
webBundle = fetchurl {
|
||||||
|
url = "https://github.com/sorz/moproxy-web/releases/download/v0.1.8/build.zip";
|
||||||
|
hash = "sha256-bLC76LnTWR2/xnDcZtX/t0OUmP7vdI/o3TCRzG9eH/g=";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
''
|
||||||
|
# build script try to download from network
|
||||||
|
sed -i '15s/.*/let zip_path = PathBuf::from("${lib.escape ["/"] (toString webBundle)}");/' build.rs
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/sorz/moproxy";
|
||||||
|
description = "A transparent TCP to SOCKSv5/HTTP proxy on Linux written in Rust";
|
||||||
|
license = licenses.mit;
|
||||||
|
mainProgram = "moproxy";
|
||||||
|
maintainers = with maintainers; [ oluceps ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user