mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
trojan-rs: init at 0.16.0-unstable-2024-11-21
Co-authored-by: linsui <linsui555@gmail.com> Co-authored-by: Arne Keller <2012gdwu+github@posteo.de>
This commit is contained in:
parent
4b0caba2c5
commit
ff9420be00
34
pkgs/by-name/tr/trojan-rs/package.nix
Normal file
34
pkgs/by-name/tr/trojan-rs/package.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
lib,
|
||||
ipset,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "trojan-rs";
|
||||
version = "0.16.0-unstable-2024-11-21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lazytiger";
|
||||
repo = "trojan-rs";
|
||||
rev = "a996b83e3d57b571fa59f01034fcdd32a09ee8bc";
|
||||
hash = "sha256-rtYvsFxxhkUuR/tLrRFvRBLG8C84Qs0kYmXkNP/Ai3c=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-FJV4pMfaw4rHTYZekot5ZTBDChfS1gCPc5NqoLeGjws=";
|
||||
|
||||
nativeBuildInputs = [ rustPlatform.bindgenHook ];
|
||||
buildInputs = [ ipset ];
|
||||
|
||||
env.RUSTC_BOOTSTRAP = true;
|
||||
env.RUSTFLAGS = "--cfg tokio_unstable";
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/lazytiger/trojan-rs";
|
||||
description = "Trojan server and proxy programs written in Rust";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "trojan";
|
||||
maintainers = with lib.maintainers; [ oluceps ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user