nixpkgs/pkgs/applications/networking/wgnord/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

68 lines
1.5 KiB
Nix

{ bash
, coreutils
, curl
, fetchFromGitHub
, gnugrep
, gnused
, iproute2
, jq
, lib
, resholve
, wireguard-tools
}:
resholve.mkDerivation rec {
pname = "wgnord";
version = "0.2.1";
src = fetchFromGitHub {
owner = "phirecc";
repo = pname;
rev = version;
hash = "sha256-26cfYXtZVQ7kIRxY6oNGCqIjdw/hjwXhVKimVgolLgk=";
};
postPatch = ''
substituteInPlace wgnord \
--replace '$conf_dir/countries.txt' "$out/share/countries.txt" \
--replace '$conf_dir/countries_iso31662.txt' "$out/share/countries_iso31662.txt"
'';
dontBuild = true;
installPhase = ''
install -Dm 755 wgnord -t $out/bin/
install -Dm 644 countries.txt -t $out/share/
install -Dm 644 countries_iso31662.txt -t $out/share/
'';
solutions.default = {
scripts = [ "bin/wgnord" ];
interpreter = "${bash}/bin/sh";
inputs = [
coreutils
curl
gnugrep
gnused
iproute2
jq
wireguard-tools
];
fix.aliases = true; # curl command in an alias
execer = [
"cannot:${iproute2}/bin/ip"
"cannot:${wireguard-tools}/bin/wg-quick"
];
};
meta = with lib; {
description = "NordVPN Wireguard (NordLynx) client in POSIX shell";
homepage = "https://github.com/phirecc/wgnord";
changelog = "https://github.com/phirecc/wgnord/releases/tag/v${version}";
maintainers = with lib.maintainers; [ urandom ];
license = licenses.mit;
mainProgram = "wgnord";
platforms = platforms.linux;
};
}