nixpkgs/pkgs/applications/networking/insync/v3.nix
InLaw e50554a427
Insync: mark broken (#193488)
* Update v3.nix

url doesn't exist anymore

* Update default.nix

url doesn't exist anymore

* Update default.nix

* Update v3.nix

* Update default.nix

* Update v3.nix

* insync: 1.5.7.37371 - update meta broken

broken = "url doesn't exist anymore" # provider changed deployment process.

* insync: 3.3.5.40925 - update meta broken

broken = "url doesn't exist anymore" # provider changed deployment process.

* insync: 3.3.5.40925 - update meta broken

broken = "url doesn't exist anymore" # provider changed deployment process.

* Update pkgs/applications/networking/insync/default.nix

* Update pkgs/applications/networking/insync/v3.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-10-07 14:15:00 -04:00

87 lines
1.9 KiB
Nix

{ stdenv
, lib
, fetchurl
, makeWrapper
, dpkg
, glibc
, glib
, libxcb
, libGL
, nss
, libthai
, wayland
, alsa-lib
, qtvirtualkeyboard
, qtwebchannel
, qtwebsockets
, qtlocation
, qtwebengine
, autoPatchelfHook
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "insync";
version = "3.3.5.40925";
src = fetchurl {
url = "http://s.insynchq.com/builds/${pname}_${version}-focal_amd64.deb";
sha256 = "sha256-lYlG/8d7teX98F5eDxm4EdBfFs7Sz3Td4kKLC6KZqnQ=";
};
postPatch = ''
substituteInPlace usr/bin/insync --replace /usr/lib/insync $out/usr/lib/insync
'';
buildInputs = [
alsa-lib
libGL
libthai
libxcb
nss
qtlocation
qtvirtualkeyboard
qtwebchannel
qtwebengine
qtwebsockets
wayland
];
nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper wrapQtAppsHook ];
unpackPhase = ''
dpkg-deb --fsys-tarfile $src | tar -x --no-same-permissions --no-same-owner
'';
installPhase = ''
mkdir -p $out/bin $out/lib $out/share
cp -R usr/* $out/
rm $out/lib/insync/libGLX.so.0
rm $out/lib/insync/libQt5*
sed -i 's|/usr/lib/insync|/lib/insync|' "$out/bin/insync"
wrapQtApp "$out/lib/insync/insync"
'';
dontConfigure = true;
dontBuild = true;
meta = with lib; {
platforms = ["x86_64-linux"];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
maintainers = with maintainers; [ benley ];
homepage = "https://www.insynchq.com";
description = "Google Drive sync and backup with multiple account support";
longDescription = ''
Insync is a commercial application that syncs your Drive files to your
computer. It has more advanced features than Google's official client
such as multiple account support, Google Doc conversion, symlink support,
and built in sharing.
There is a 15-day free trial, and it is a paid application after that.
'';
# download URL removed
broken = true;
};
}