Merge pull request #78154 from wedens/megacmd

megacmd: init at 1.1.0
This commit is contained in:
Mario Rodas 2020-01-22 20:03:50 -05:00 committed by GitHub
commit ffe8735805
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,88 @@
{ stdenv
, autoconf
, automake
, c-ares
, cryptopp
, curl
, fetchFromGitHub
, ffmpeg
, freeimage
, gcc-unwrapped
, libmediainfo
, libraw
, libsodium
, libtool
, libuv
, libzen
, pcre-cpp
, pkgconfig
, readline
, sqlite
}:
stdenv.mkDerivation rec {
pname = "megacmd";
version = "1.1.0";
src = fetchFromGitHub {
owner = "meganz";
repo = "MEGAcmd";
rev = "${version}_Linux";
sha256 = "004j8m3xs6slx03g2g6wzr97myl2v3zc09wxnfar5c62a625pd53";
fetchSubmodules = true;
};
nativeBuildInputs = [
autoconf
automake
libtool
pkgconfig
];
buildInputs = [
c-ares
cryptopp
curl
ffmpeg
freeimage
gcc-unwrapped
libmediainfo
libraw
libsodium
libtool
libuv
libzen
pcre-cpp
readline
sqlite
];
preConfigure = ''
./autogen.sh
'';
configureFlags = [
"--disable-curl-checks"
"--disable-examples"
"--with-cares"
"--with-cryptopp"
"--with-curl"
"--with-ffmpeg"
"--with-freeimage"
"--with-libmediainfo"
"--with-libuv"
"--with-libzen"
"--with-pcre"
"--with-readline"
"--with-sodium"
"--with-termcap"
];
meta = with stdenv.lib; {
description = "MEGA Command Line Interactive and Scriptable Application";
homepage = https://mega.nz/;
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = [ maintainers.wedens ];
};
}

View file

@ -1930,6 +1930,8 @@ in
megasync = libsForQt5.callPackage ../applications/misc/megasync { };
megacmd = callPackage ../applications/misc/megacmd { };
meritous = callPackage ../games/meritous { };
opendune = callPackage ../games/opendune { };