nixpkgs/pkgs/tools/networking/tuic/default.nix
2024-05-19 11:05:07 +03:00

40 lines
837 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, darwin
}:
rustPlatform.buildRustPackage rec{
pname = "tuic";
version = "1.0.0";
src = fetchFromGitHub {
owner = "EAimTY";
repo = pname;
rev = "tuic-server-${version}";
hash = "sha256-VoNr91vDqBlt9asT/dwCeYk13UNiDexNNiKwD5DSn8k=";
};
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Security
]);
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 ];
};
}