nixpkgs/pkgs/tools/networking/tuic/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
716 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec{
pname = "tuic";
version = "1.0.0";
src = fetchFromGitHub {
owner = "EAimTY";
repo = pname;
rev = "tuic-server-${version}";
hash = "sha256-VoNr91vDqBlt9asT/dwCeYk13UNiDexNNiKwD5DSn8k=";
};
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
cargoLock.lockFile = ./Cargo.lock;
# doc test will fail in this version
checkFlags = [ "--skip=lib" ];
meta = with lib; {
homepage = "https://github.com/EAimTY/tuic";
description = "Delicately-TUICed 0-RTT proxy protocol";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ oluceps ];
};
}