nixpkgs/pkgs/tools/networking/tinyfecvpn/default.nix
2021-01-16 23:49:59 -08:00

38 lines
950 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config }:
stdenv.mkDerivation rec {
pname = "tinyfecvpn";
version = "20180820.0";
src = fetchFromGitHub {
owner = "wangyu-";
repo = pname;
rev = version;
sha256 = "1mbb9kzvy24na375dz0rlf5k93gan1vahamc9wzkn34mcx8i97cs";
fetchSubmodules = true;
};
enableParallelBuilding = true;
nativeBuildInputs = [ pkg-config ];
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
'';
meta = with lib; {
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;
maintainers = with maintainers; [ petabyteboy ];
};
}