nixpkgs/pkgs/tools/networking/tinyfecvpn/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

39 lines
964 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config }:
stdenv.mkDerivation rec {
pname = "tinyfecvpn";
version = "20230206.0";
src = fetchFromGitHub {
owner = "wangyu-";
repo = pname;
rev = version;
sha256 = "sha256-g4dduREH64TDK3Y2PKc5RZiISW4h2ALRh8vQK7jvCZU=";
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 = "VPN Designed for Lossy Links, with Build-in Forward Error Correction(FEC) Support";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
mainProgram = "tinyvpn";
};
}