2021-02-17 04:52:49 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-11-06 04:02:09 +00:00
|
|
|
, autoconf
|
|
|
|
, automake
|
|
|
|
, c-ares
|
|
|
|
, cryptopp
|
|
|
|
, curl
|
|
|
|
, doxygen
|
|
|
|
, fetchFromGitHub
|
2021-08-04 02:17:06 +01:00
|
|
|
#, ffmpeg
|
2020-11-06 04:02:09 +00:00
|
|
|
, libmediainfo
|
|
|
|
, libraw
|
|
|
|
, libsodium
|
|
|
|
, libtool
|
|
|
|
, libuv
|
|
|
|
, libzen
|
|
|
|
, lsb-release
|
|
|
|
, mkDerivation
|
2021-01-17 02:09:27 +00:00
|
|
|
, pkg-config
|
2020-11-06 04:02:09 +00:00
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
|
|
|
, sqlite
|
|
|
|
, swig
|
|
|
|
, unzip
|
|
|
|
, wget
|
|
|
|
}:
|
2019-08-24 20:15:40 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "megasync";
|
2021-08-04 02:17:06 +01:00
|
|
|
version = "4.5.3.0";
|
2019-06-23 15:08:52 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "meganz";
|
|
|
|
repo = "MEGAsync";
|
|
|
|
rev = "v${version}_Linux";
|
2021-08-04 02:17:06 +01:00
|
|
|
sha256 = "1lwjmdbqyxx5wd8nx4mc830fna37jad4h93viwfh5x7sxn104js7";
|
2019-06-23 15:08:52 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2021-02-17 04:52:49 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
doxygen
|
|
|
|
libtool
|
|
|
|
lsb-release
|
|
|
|
pkg-config
|
|
|
|
qttools
|
|
|
|
swig
|
|
|
|
unzip
|
|
|
|
];
|
2019-06-23 15:08:52 +01:00
|
|
|
buildInputs = [
|
|
|
|
c-ares
|
|
|
|
cryptopp
|
|
|
|
curl
|
2021-05-19 04:34:41 +01:00
|
|
|
# temporarily disable until patched for ffmpeg 4.4
|
|
|
|
#ffmpeg
|
2019-06-23 15:08:52 +01:00
|
|
|
libmediainfo
|
|
|
|
libraw
|
|
|
|
libsodium
|
|
|
|
libuv
|
|
|
|
libzen
|
2019-08-24 20:15:40 +01:00
|
|
|
qtbase
|
2020-11-06 04:02:09 +00:00
|
|
|
qtx11extras
|
2019-06-23 15:08:52 +01:00
|
|
|
sqlite
|
|
|
|
wget
|
2019-06-24 15:19:48 +01:00
|
|
|
];
|
2019-06-23 15:08:52 +01:00
|
|
|
|
2019-06-25 03:23:47 +01:00
|
|
|
patches = [
|
2019-06-24 15:19:48 +01:00
|
|
|
# Distro and version targets attempt to use lsb_release which is broken
|
|
|
|
# (see issue: https://github.com/NixOS/nixpkgs/issues/22729)
|
2019-06-25 03:23:47 +01:00
|
|
|
./noinstall-distro-version.patch
|
2019-06-24 15:19:48 +01:00
|
|
|
# megasync target is not part of the install rule thanks to a commented block
|
2019-06-25 03:23:47 +01:00
|
|
|
./install-megasync.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2021-02-17 04:52:49 +00:00
|
|
|
for file in $(find src/ -type f \( -iname configure -o -iname \*.sh \) ); do
|
2019-06-25 03:23:47 +01:00
|
|
|
substituteInPlace "$file" --replace "/bin/bash" "${stdenv.shell}"
|
|
|
|
done
|
2019-06-23 15:08:52 +01:00
|
|
|
'';
|
|
|
|
|
2019-06-24 15:19:48 +01:00
|
|
|
dontUseQmakeConfigure = true;
|
2019-06-25 03:23:47 +01:00
|
|
|
enableParallelBuilding = true;
|
2019-06-24 15:19:48 +01:00
|
|
|
|
2019-06-23 15:08:52 +01:00
|
|
|
preConfigure = ''
|
|
|
|
cd src/MEGASync/mega
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
2020-02-26 12:54:00 +00:00
|
|
|
"--disable-examples"
|
|
|
|
"--disable-java"
|
|
|
|
"--disable-php"
|
|
|
|
"--enable-chat"
|
|
|
|
"--with-cares"
|
|
|
|
"--with-cryptopp"
|
|
|
|
"--with-curl"
|
2021-05-19 04:34:41 +01:00
|
|
|
# temporarily disable until patched for ffmpeg 4.4
|
|
|
|
#"--with-ffmpeg"
|
2020-02-26 12:54:00 +00:00
|
|
|
"--without-freeimage" # unreferenced even when found
|
|
|
|
"--without-readline"
|
|
|
|
"--without-termcap"
|
|
|
|
"--with-sodium"
|
|
|
|
"--with-sqlite"
|
|
|
|
"--with-zlib"
|
|
|
|
];
|
2019-06-23 15:08:52 +01:00
|
|
|
|
2019-06-24 15:19:48 +01:00
|
|
|
postConfigure = ''
|
|
|
|
cd ../..
|
2019-06-23 15:08:52 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
qmake CONFIG+="release" MEGA.pro
|
2019-06-24 15:19:48 +01:00
|
|
|
pushd MEGASync
|
|
|
|
lrelease MEGASync.pro
|
|
|
|
DESKTOP_DESTDIR="$out" qmake PREFIX="$out" -o Makefile MEGASync.pro CONFIG+=release
|
|
|
|
popd
|
2019-06-23 15:08:52 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-26 12:54:00 +00:00
|
|
|
description =
|
|
|
|
"Easy automated syncing between your computers and your MEGA Cloud Drive";
|
|
|
|
homepage = "https://mega.nz/";
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2019-06-23 15:08:52 +01:00
|
|
|
maintainers = [ maintainers.michojel ];
|
|
|
|
};
|
|
|
|
}
|