mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
34 lines
716 B
Nix
34 lines
716 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|