Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
115 lines
3.5 KiB
Nix
115 lines
3.5 KiB
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
wirelesstools,
|
|
makeWrapper,
|
|
wireguard-tools,
|
|
openvpn,
|
|
obfs4,
|
|
iproute2,
|
|
dnscrypt-proxy,
|
|
iptables,
|
|
gawk,
|
|
util-linux,
|
|
}:
|
|
|
|
builtins.mapAttrs
|
|
(
|
|
pname: attrs:
|
|
buildGoModule (
|
|
attrs
|
|
// rec {
|
|
inherit pname;
|
|
version = "3.14.29";
|
|
|
|
buildInputs = [
|
|
wirelesstools
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivpn";
|
|
repo = "desktop-app";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-8JScty/sGyxzC2ojRpatHpCqEXZw9ksMortIhZnukoU=";
|
|
};
|
|
|
|
proxyVendor = true; # .c file
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/ivpn/desktop-app/daemon/version._version=${version}"
|
|
"-X github.com/ivpn/desktop-app/daemon/version._time=1970-01-01"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/{${attrs.modRoot},${pname}}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Official IVPN Desktop app";
|
|
homepage = "https://www.ivpn.net/apps";
|
|
changelog = "https://github.com/ivpn/desktop-app/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
urandom
|
|
ataraxiasjel
|
|
];
|
|
mainProgram = "ivpn";
|
|
};
|
|
}
|
|
)
|
|
)
|
|
{
|
|
ivpn = {
|
|
modRoot = "cli";
|
|
vendorHash = "sha256-STbkFchrmxwWnSgEJ7RGKN3jGaCC0npL80YjlwUcs1g=";
|
|
};
|
|
ivpn-service = {
|
|
modRoot = "daemon";
|
|
vendorHash = "sha256-REIY3XPyMA2Loxo1mKzJMJwZrf9dQMOtnQOUEgN5LP8=";
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
patches = [ ./permissions.patch ];
|
|
postPatch = ''
|
|
substituteInPlace daemon/service/platform/platform_linux.go \
|
|
--replace 'openVpnBinaryPath = "/usr/sbin/openvpn"' \
|
|
'openVpnBinaryPath = "${openvpn}/bin/openvpn"' \
|
|
--replace 'routeCommand = "/sbin/ip route"' \
|
|
'routeCommand = "${iproute2}/bin/ip route"'
|
|
|
|
substituteInPlace daemon/netinfo/netinfo_linux.go \
|
|
--replace 'retErr := shell.ExecAndProcessOutput(log, outParse, "", "/sbin/ip", "route")' \
|
|
'retErr := shell.ExecAndProcessOutput(log, outParse, "", "${iproute2}/bin/ip", "route")'
|
|
|
|
substituteInPlace daemon/service/platform/platform_linux_release.go \
|
|
--replace 'installDir := "/opt/ivpn"' "installDir := \"$out\"" \
|
|
--replace 'obfsproxyStartScript = path.Join(installDir, "obfsproxy/obfs4proxy")' \
|
|
'obfsproxyStartScript = "${lib.getExe obfs4}"' \
|
|
--replace 'wgBinaryPath = path.Join(installDir, "wireguard-tools/wg-quick")' \
|
|
'wgBinaryPath = "${wireguard-tools}/bin/wg-quick"' \
|
|
--replace 'wgToolBinaryPath = path.Join(installDir, "wireguard-tools/wg")' \
|
|
'wgToolBinaryPath = "${wireguard-tools}/bin/wg"' \
|
|
--replace 'dnscryptproxyBinPath = path.Join(installDir, "dnscrypt-proxy/dnscrypt-proxy")' \
|
|
'dnscryptproxyBinPath = "${dnscrypt-proxy}/bin/dnscrypt-proxy"'
|
|
'';
|
|
|
|
postFixup = ''
|
|
mkdir -p $out/etc
|
|
cp -r $src/daemon/References/Linux/etc/* $out/etc/
|
|
cp -r $src/daemon/References/common/etc/* $out/etc/
|
|
|
|
patchShebangs --build $out/etc/firewall.sh $out/etc/splittun.sh $out/etc/client.down $out/etc/client.up
|
|
|
|
wrapProgram "$out/bin/ivpn-service" \
|
|
--suffix PATH : ${
|
|
lib.makeBinPath [
|
|
iptables
|
|
gawk
|
|
util-linux
|
|
]
|
|
}
|
|
'';
|
|
};
|
|
}
|