mozillavpn 2.19.0 -> 2.20.0 https://github.com/mozilla-mobile/mozilla-vpn-client/releases attrpath: mozillavpn Checking auto update branch... No auto update branch exists Old version 2.19.0" not present in master derivation file with contents: { buildGoModule , cargo , cmake , fetchFromGitHub , go , lib , libcap , libgcrypt , libgpg-error , libsecret , pkg-config , polkit , python3 , qt5compat , qtbase , qtnetworkauth , qtsvg , qttools , qtwebsockets , rustPlatform , rustc , stdenv , wireguard-tools , wrapQtAppsHook }: let pname = "mozillavpn"; version = "2.20.0"; src = fetchFromGitHub { owner = "mozilla-mobile"; repo = "mozilla-vpn-client"; rev = "v${version}"; fetchSubmodules = true; hash = "sha256-pPc7++m21DO349VJsaJZRk3xY+qqzgv6Jj5cwYQI3NI="; }; patches = [ ]; netfilterGoModules = (buildGoModule { inherit pname version src patches; modRoot = "linux/netfilter"; vendorHash = "sha256-Cmo0wnl0z5r1paaEf1MhCPbInWeoMhGjnxCxGh0cyO8="; }).goModules; extensionBridgeDeps = rustPlatform.fetchCargoTarball { inherit src patches; name = "${pname}-${version}-extension-bridge"; preBuild = "cd extension/bridge"; hash = "sha256-wXr9+eyHBQcwEHy/DLixLZ/0DnFHhtiqrbl5q/7qx0U="; }; signatureDeps = rustPlatform.fetchCargoTarball { inherit src patches; name = "${pname}-${version}-signature"; preBuild = "cd signature"; hash = "sha256-7Gz4T5wF/xpbNJZqudEaEs67q1Y6NMUuXe6u34FWqIA="; }; qtgleanDeps = rustPlatform.fetchCargoTarball { inherit src patches; name = "${pname}-${version}-qtglean"; preBuild = "cd qtglean"; hash = "sha256-CTubwS4O3az8AHGa5YQgvjXQfh1j9w6jFmiX37aYjOw="; }; in stdenv.mkDerivation { inherit pname version src patches; buildInputs = [ libcap libgcrypt libgpg-error libsecret qt5compat qtbase qtnetworkauth qtsvg qtwebsockets ]; nativeBuildInputs = [ cargo cmake go pkg-config python3 python3.pkgs.glean-parser python3.pkgs.pyyaml python3.pkgs.setuptools qttools rustPlatform.cargoSetupHook rustc wrapQtAppsHook ]; postUnpack = '' pushd source/extension/bridge cargoDeps='${extensionBridgeDeps}' cargoSetupPostUnpackHook extensionBridgeDepsCopy="$cargoDepsCopy" popd pushd source/signature cargoDeps='${signatureDeps}' cargoSetupPostUnpackHook signatureDepsCopy="$cargoDepsCopy" popd pushd source/qtglean cargoDeps='${qtgleanDeps}' cargoSetupPostUnpackHook qtgleanDepsCopy="$cargoDepsCopy" popd ''; dontCargoSetupPostUnpack = true; postPatch = '' substituteInPlace src/cmake/linux.cmake \ --replace '/etc/xdg/autostart' "$out/etc/xdg/autostart" \ --replace '/usr/share/dbus-1' "$out/share/dbus-1" \ --replace '${"$"}{SYSTEMD_UNIT_DIR}' "$out/lib/systemd/system" substituteInPlace extension/CMakeLists.txt \ --replace '/etc' "$out/etc" ln -s '${netfilterGoModules}' linux/netfilter/vendor pushd extension/bridge cargoDepsCopy="$extensionBridgeDepsCopy" cargoSetupPostPatchHook popd pushd signature cargoDepsCopy="$signatureDepsCopy" cargoSetupPostPatchHook popd pushd qtglean cargoDepsCopy="$qtgleanDepsCopy" cargoSetupPostPatchHook popd cargoSetupPostPatchHook() { true; } ''; cmakeFlags = [ "-DQT_LCONVERT_EXECUTABLE=${qttools.dev}/bin/lconvert" "-DQT_LUPDATE_EXECUTABLE=${qttools.dev}/bin/lupdate" "-DQT_LRELEASE_EXECUTABLE=${qttools.dev}/bin/lrelease" ]; dontFixCmake = true; qtWrapperArgs = [ "--prefix" "PATH" ":" (lib.makeBinPath [ wireguard-tools ]) ]; meta = { description = "Client for the Mozilla VPN service"; homepage = "https://vpn.mozilla.org/"; license = lib.licenses.mpl20; maintainers = with lib.maintainers; [ andersk ]; platforms = lib.platforms.linux; }; }