megasync: format with nixfmt

This commit is contained in:
Patrick Hilhorst 2020-02-26 13:54:00 +01:00
parent bee470ef9a
commit 5e55ebb2b4
No known key found for this signature in database
GPG Key ID: 589BB0A8DAFEF2B2
1 changed files with 25 additions and 53 deletions

View File

@ -1,28 +1,6 @@
{ stdenv
, autoconf
, automake
, c-ares
, cryptopp
, curl
, doxygen
, fetchFromGitHub
, ffmpeg
, libmediainfo
, libraw
, libsodium
, libtool
, libuv
, libzen
, lsb-release
, mkDerivation
, pkgconfig
, qtbase
, qttools
, sqlite
, swig
, unzip
, wget
}:
{ stdenv, autoconf, automake, c-ares, cryptopp, curl, doxygen, fetchFromGitHub
, ffmpeg, libmediainfo, libraw, libsodium, libtool, libuv, libzen, lsb-release
, mkDerivation, pkgconfig, qtbase, qttools, sqlite, swig, unzip, wget }:
mkDerivation rec {
pname = "megasync";
@ -36,15 +14,8 @@ mkDerivation rec {
fetchSubmodules = true;
};
nativeBuildInputs = [
autoconf
automake
doxygen
lsb-release
pkgconfig
qttools
swig
];
nativeBuildInputs =
[ autoconf automake doxygen lsb-release pkgconfig qttools swig ];
buildInputs = [
c-ares
cryptopp
@ -114,8 +85,9 @@ mkDerivation rec {
'';
meta = with stdenv.lib; {
description = "Easy automated syncing between your computers and your MEGA Cloud Drive";
homepage = https://mega.nz/;
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 ];