mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
28b5d59de2
with ffmpeg with freeimage Signed-off-by: Michal Minář <mm@michojel.cz>
130 lines
2.3 KiB
Nix
130 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, autoconf
|
|
, automake
|
|
, c-ares
|
|
, cryptopp
|
|
, curl
|
|
, doxygen
|
|
, fetchFromGitHub
|
|
, ffmpeg
|
|
, freeimage
|
|
, libmediainfo
|
|
, libraw
|
|
, libsodium
|
|
, libtool
|
|
, libuv
|
|
, libzen
|
|
, lsb-release
|
|
, mkDerivation
|
|
, pkg-config
|
|
, qtbase
|
|
, qttools
|
|
, qtx11extras
|
|
, sqlite
|
|
, swig
|
|
, unzip
|
|
, wget
|
|
}:
|
|
mkDerivation rec {
|
|
pname = "megasync";
|
|
version = "4.6.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "meganz";
|
|
repo = "MEGAsync";
|
|
rev = "v${version}_Linux";
|
|
sha256 = "0v2fvji9hs7valya0wx5qjx01c7yjld6nnp6m9gpxfkr30h5s5wb";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
doxygen
|
|
libtool
|
|
lsb-release
|
|
pkg-config
|
|
qttools
|
|
swig
|
|
unzip
|
|
];
|
|
buildInputs = [
|
|
c-ares
|
|
cryptopp
|
|
curl
|
|
ffmpeg
|
|
freeimage
|
|
libmediainfo
|
|
libraw
|
|
libsodium
|
|
libuv
|
|
libzen
|
|
qtbase
|
|
qtx11extras
|
|
sqlite
|
|
wget
|
|
];
|
|
|
|
patches = [
|
|
# Distro and version targets attempt to use lsb_release which is broken
|
|
# (see issue: https://github.com/NixOS/nixpkgs/issues/22729)
|
|
./noinstall-distro-version.patch
|
|
# megasync target is not part of the install rule thanks to a commented block
|
|
./install-megasync.patch
|
|
./ffmpeg_44.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
for file in $(find src/ -type f \( -iname configure -o -iname \*.sh \) ); do
|
|
substituteInPlace "$file" --replace "/bin/bash" "${stdenv.shell}"
|
|
done
|
|
'';
|
|
|
|
dontUseQmakeConfigure = true;
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
cd src/MEGASync/mega
|
|
./autogen.sh
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--disable-examples"
|
|
"--disable-java"
|
|
"--disable-php"
|
|
"--enable-chat"
|
|
"--with-cares"
|
|
"--with-cryptopp"
|
|
"--with-curl"
|
|
"--with-ffmpeg"
|
|
"--with-freeimage"
|
|
"--without-readline"
|
|
"--without-termcap"
|
|
"--with-sodium"
|
|
"--with-sqlite"
|
|
"--with-zlib"
|
|
];
|
|
|
|
postConfigure = ''
|
|
cd ../..
|
|
'';
|
|
|
|
preBuild = ''
|
|
qmake CONFIG+="release" MEGA.pro
|
|
pushd MEGASync
|
|
lrelease MEGASync.pro
|
|
DESKTOP_DESTDIR="$out" qmake PREFIX="$out" -o Makefile MEGASync.pro CONFIG+=release
|
|
popd
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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" ];
|
|
maintainers = [ maintainers.michojel ];
|
|
};
|
|
}
|