2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config }:
|
2019-10-30 06:28:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tinyfecvpn";
|
2023-02-09 09:05:12 +00:00
|
|
|
version = "20230206.0";
|
2019-10-30 06:28:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wangyu-";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-02-09 09:05:12 +00:00
|
|
|
sha256 = "sha256-g4dduREH64TDK3Y2PKc5RZiISW4h2ALRh8vQK7jvCZU=";
|
2019-10-30 06:28:21 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-10-30 06:28:21 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
runHook prePatch
|
|
|
|
find . -type f -name "makefile" -exec sed "s/ -static/ -g/g" -i \{\} \;
|
|
|
|
runHook postPatch
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
install -Dm755 tinyvpn $out/bin/tinyvpn
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-30 06:28:21 +00:00
|
|
|
homepage = "https://github.com/wangyu-/tinyfecVPN";
|
|
|
|
description = "A VPN Designed for Lossy Links, with Build-in Forward Error Correction(FEC) Support";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2022-06-22 22:51:46 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-10-30 06:28:21 +00:00
|
|
|
};
|
|
|
|
}
|