expressvpn: init at 3.25.0.13
This commit is contained in:
@@ -71,6 +71,13 @@
|
|||||||
<link linkend="opt-services.persistent-evdev.enable">services.persistent-evdev</link>.
|
<link linkend="opt-services.persistent-evdev.enable">services.persistent-evdev</link>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<link xlink:href="https://www.expressvpn.com">expressvpn</link>,
|
||||||
|
the CLI client for ExpressVPN. Available as
|
||||||
|
<link linkend="opt-services.expressvpn.enable">services.expressvpn</link>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
<section xml:id="sec-release-22.11-incompatibilities">
|
<section xml:id="sec-release-22.11-incompatibilities">
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ In addition to numerous new and upgraded packages, this release has the followin
|
|||||||
Available as [services.infnoise](options.html#opt-services.infnoise.enable).
|
Available as [services.infnoise](options.html#opt-services.infnoise.enable).
|
||||||
- [persistent-evdev](https://github.com/aiberia/persistent-evdev), a daemon to add virtual proxy devices that mirror a physical input device but persist even if the underlying hardware is hot-plugged. Available as [services.persistent-evdev](#opt-services.persistent-evdev.enable).
|
- [persistent-evdev](https://github.com/aiberia/persistent-evdev), a daemon to add virtual proxy devices that mirror a physical input device but persist even if the underlying hardware is hot-plugged. Available as [services.persistent-evdev](#opt-services.persistent-evdev.enable).
|
||||||
|
|
||||||
|
- [expressvpn](https://www.expressvpn.com), the CLI client for ExpressVPN. Available as [services.expressvpn](#opt-services.expressvpn.enable).
|
||||||
|
|
||||||
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
||||||
|
|
||||||
## Backward Incompatibilities {#sec-release-22.11-incompatibilities}
|
## Backward Incompatibilities {#sec-release-22.11-incompatibilities}
|
||||||
|
|||||||
@@ -771,6 +771,7 @@
|
|||||||
./services/networking/ergo.nix
|
./services/networking/ergo.nix
|
||||||
./services/networking/ergochat.nix
|
./services/networking/ergochat.nix
|
||||||
./services/networking/eternal-terminal.nix
|
./services/networking/eternal-terminal.nix
|
||||||
|
./services/networking/expressvpn.nix
|
||||||
./services/networking/fakeroute.nix
|
./services/networking/fakeroute.nix
|
||||||
./services/networking/ferm.nix
|
./services/networking/ferm.nix
|
||||||
./services/networking/fireqos.nix
|
./services/networking/fireqos.nix
|
||||||
|
|||||||
29
nixos/modules/services/networking/expressvpn.nix
Normal file
29
nixos/modules/services/networking/expressvpn.nix
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
options.services.expressvpn.enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Enable the ExpressVPN daemon.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf config.services.expressvpn.enable {
|
||||||
|
boot.kernelModules = [ "tun" ];
|
||||||
|
|
||||||
|
systemd.services.expressvpn = {
|
||||||
|
description = "ExpressVPN Daemon";
|
||||||
|
serviceConfig = {
|
||||||
|
ExecStart = "${pkgs.expressvpn}/bin/expressvpnd";
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartSec = 5;
|
||||||
|
};
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
after = [ "network.target" "network-online.target" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta.maintainers = with maintainers; [ yureien ];
|
||||||
|
}
|
||||||
98
pkgs/applications/networking/expressvpn/default.nix
Normal file
98
pkgs/applications/networking/expressvpn/default.nix
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
{ autoPatchelfHook
|
||||||
|
, buildFHSUserEnv
|
||||||
|
, dpkg
|
||||||
|
, fetchurl
|
||||||
|
, inotify-tools
|
||||||
|
, lib
|
||||||
|
, stdenvNoCC
|
||||||
|
, sysctl
|
||||||
|
, writeScript
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "expressvpn";
|
||||||
|
clientVersion = "3.25.0";
|
||||||
|
clientBuild = "13";
|
||||||
|
version = lib.strings.concatStringsSep "." [ clientVersion clientBuild ];
|
||||||
|
|
||||||
|
expressvpnBase = stdenvNoCC.mkDerivation {
|
||||||
|
inherit pname version;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.expressvpn.works/clients/linux/expressvpn_${version}-1_amd64.deb";
|
||||||
|
hash = "sha256-lyDjG346FrgT7SZbsWET+Hexl9Un6mzMukfO2PwlInA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ dpkg autoPatchelfHook ];
|
||||||
|
|
||||||
|
dontConfigure = true;
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
runHook preUnpack
|
||||||
|
dpkg --fsys-tarfile $src | tar --extract
|
||||||
|
runHook postUnpack
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mv usr/ $out/
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
expressvpndFHS = buildFHSUserEnv {
|
||||||
|
name = "expressvpnd";
|
||||||
|
|
||||||
|
# When connected, it directly creates/deletes resolv.conf to change the DNS entries.
|
||||||
|
# Since it's running in an FHS environment, it has no effect on actual resolv.conf.
|
||||||
|
# Hence, place a watcher that updates host resolv.conf when FHS resolv.conf changes.
|
||||||
|
runScript = writeScript "${pname}-wrapper" ''
|
||||||
|
cp /host/etc/resolv.conf /etc/resolv.conf;
|
||||||
|
while inotifywait /etc 2>/dev/null;
|
||||||
|
do
|
||||||
|
cp /etc/resolv.conf /host/etc/resolv.conf;
|
||||||
|
done &
|
||||||
|
expressvpnd --client-version ${clientVersion} --client-build ${clientBuild}
|
||||||
|
'';
|
||||||
|
|
||||||
|
# expressvpnd binary has hard-coded the path /sbin/sysctl hence below workaround.
|
||||||
|
extraBuildCommands = ''
|
||||||
|
chmod +w sbin
|
||||||
|
ln -s ${sysctl}/bin/sysctl sbin/sysctl
|
||||||
|
'';
|
||||||
|
|
||||||
|
# The expressvpnd binary also uses hard-coded paths to the other binaries and files
|
||||||
|
# it ships with, hence the FHS environment.
|
||||||
|
|
||||||
|
targetPkgs = pkgs: with pkgs; [
|
||||||
|
expressvpnBase
|
||||||
|
inotify-tools
|
||||||
|
iproute2
|
||||||
|
];
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenvNoCC.mkDerivation {
|
||||||
|
inherit pname version;
|
||||||
|
|
||||||
|
dontUnpack = true;
|
||||||
|
dontConfigure = true;
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/bin $out/share
|
||||||
|
ln -s ${expressvpnBase}/bin/expressvpn $out/bin
|
||||||
|
ln -s ${expressvpndFHS}/bin/expressvpnd $out/bin
|
||||||
|
ln -s ${expressvpnBase}/share/{bash-completion,doc,man} $out/share/
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "CLI client for ExpressVPN";
|
||||||
|
homepage = "https://www.expressvpn.com";
|
||||||
|
license = licenses.unfree;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ yureien ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -390,6 +390,8 @@ with pkgs;
|
|||||||
|
|
||||||
evans = callPackage ../development/tools/evans { };
|
evans = callPackage ../development/tools/evans { };
|
||||||
|
|
||||||
|
expressvpn = callPackage ../applications/networking/expressvpn { };
|
||||||
|
|
||||||
firefly-desktop = callPackage ../applications/misc/firefly-desktop { };
|
firefly-desktop = callPackage ../applications/misc/firefly-desktop { };
|
||||||
|
|
||||||
frugal = callPackage ../development/tools/frugal { };
|
frugal = callPackage ../development/tools/frugal { };
|
||||||
|
|||||||
Reference in New Issue
Block a user