mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
170 lines
3.3 KiB
Nix
170 lines
3.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
dpkg,
|
|
alsa-lib,
|
|
atk,
|
|
cairo,
|
|
cups,
|
|
dbus,
|
|
expat,
|
|
fontconfig,
|
|
freetype,
|
|
gdk-pixbuf,
|
|
glib,
|
|
pango,
|
|
nspr,
|
|
nss,
|
|
gtk3,
|
|
mesa,
|
|
libGL,
|
|
wayland,
|
|
xorg,
|
|
autoPatchelfHook,
|
|
systemd,
|
|
libnotify,
|
|
libappindicator,
|
|
makeWrapper,
|
|
coreutils,
|
|
gnugrep,
|
|
|
|
versionCheckHook,
|
|
}:
|
|
|
|
let
|
|
deps = [
|
|
alsa-lib
|
|
atk
|
|
cairo
|
|
cups
|
|
dbus
|
|
expat
|
|
fontconfig
|
|
freetype
|
|
gdk-pixbuf
|
|
glib
|
|
pango
|
|
gtk3
|
|
libappindicator
|
|
libnotify
|
|
mesa
|
|
xorg.libX11
|
|
xorg.libXScrnSaver
|
|
xorg.libXcomposite
|
|
xorg.libXcursor
|
|
xorg.libXdamage
|
|
xorg.libXext
|
|
xorg.libXfixes
|
|
xorg.libXi
|
|
xorg.libXrandr
|
|
xorg.libXrender
|
|
xorg.libXtst
|
|
xorg.libxcb
|
|
xorg.libxshmfence
|
|
nspr
|
|
nss
|
|
systemd
|
|
];
|
|
|
|
version = "2024.7";
|
|
|
|
selectSystem =
|
|
attrs:
|
|
attrs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
platform = selectSystem {
|
|
x86_64-linux = "amd64";
|
|
aarch64-linux = "arm64";
|
|
};
|
|
|
|
hash = selectSystem {
|
|
x86_64-linux = "sha256-l6uWrOzMzn8bF5iZzfa/xffLIvAPsCaLwzcRPRW3t0o=";
|
|
aarch64-linux = "sha256-/RLTjhkiH9WdYO56njnxQyJ0nSaAq/awrkm0NhctFZY=";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "mullvad-vpn";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mullvad/mullvadvpn-app/releases/download/${version}/MullvadVPN-${version}_${platform}.deb";
|
|
inherit hash;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = deps;
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
runtimeDependencies = [
|
|
(lib.getLib systemd)
|
|
libGL
|
|
libnotify
|
|
libappindicator
|
|
wayland
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/mullvad $out/bin
|
|
|
|
mv usr/share/* $out/share
|
|
mv usr/bin/* $out/bin
|
|
mv opt/Mullvad\ VPN/* $out/share/mullvad
|
|
|
|
ln -s $out/share/mullvad/mullvad-{gui,vpn} $out/bin/
|
|
ln -sf $out/share/mullvad/resources/mullvad-problem-report $out/bin/mullvad-problem-report
|
|
|
|
wrapProgram $out/bin/mullvad-vpn \
|
|
--set MULLVAD_DISABLE_UPDATE_NOTIFICATION 1 \
|
|
--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
coreutils
|
|
gnugrep
|
|
]
|
|
}
|
|
|
|
wrapProgram $out/bin/mullvad-daemon \
|
|
--set-default MULLVAD_RESOURCE_DIR "$out/share/mullvad/resources"
|
|
|
|
wrapProgram $out/bin/mullvad-gui \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--enable-features=UseOzonePlatform --ozone-platform=wayland --enable-wayland-ime=true}}"
|
|
|
|
sed -i "s|Exec.*$|Exec=$out/bin/mullvad-vpn $U|" $out/share/applications/mullvad-vpn.desktop
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
versionCheckProgramArg = [ "--version" ];
|
|
doInstallCheck = true;
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/mullvad/mullvadvpn-app";
|
|
description = "Client for Mullvad VPN";
|
|
changelog = "https://github.com/mullvad/mullvadvpn-app/blob/${version}/CHANGELOG.md";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.unix;
|
|
badPlatforms = [ lib.systems.inspect.patterns.isDarwin ];
|
|
maintainers = with lib.maintainers; [
|
|
Br1ght0ne
|
|
ymarkus
|
|
ataraxiasjel
|
|
];
|
|
};
|
|
}
|