biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / tuic / default.nix
bloba2a0bfc2f0ffee6f51c7feab4b7f85f7cddf9756
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec{
9   pname = "tuic";
10   version = "1.0.0";
12   src = fetchFromGitHub {
13     owner = "EAimTY";
14     repo = pname;
15     rev = "tuic-server-${version}";
16     hash = "sha256-VoNr91vDqBlt9asT/dwCeYk13UNiDexNNiKwD5DSn8k=";
17   };
19   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [
20     Security
21   ]);
23   postPatch = ''
24     ln -sf ${./Cargo.lock} Cargo.lock
25   '';
27   cargoLock.lockFile = ./Cargo.lock;
29   # doc test will fail in this version
30   checkFlags = [ "--skip=lib" ];
32   meta = with lib; {
33     homepage = "https://github.com/EAimTY/tuic";
34     description = "Delicately-TUICed 0-RTT proxy protocol";
35     license = licenses.gpl3Only;
36     platforms = platforms.unix;
37     maintainers = with maintainers; [ oluceps ];
38   };