megacmd: 1.2.0 -> 1.4.0 (#122405)

This commit is contained in:
lunik1 2021-05-11 22:47:19 +01:00 committed by GitHub
parent c58155c87c
commit be038cf4f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,12 @@
{ lib, stdenv
{ lib
, stdenv
, autoconf
, automake
, c-ares
, cryptopp
, curl
, fetchFromGitHub
, ffmpeg_3
, ffmpeg_3 # build fails with latest ffmpeg, see https://github.com/meganz/MEGAcmd/issues/523
, freeimage
, gcc-unwrapped
, libmediainfo
@ -22,13 +23,13 @@
stdenv.mkDerivation rec {
pname = "megacmd";
version = "1.2.0";
version = "1.4.0";
src = fetchFromGitHub {
owner = "meganz";
repo = "MEGAcmd";
rev = "${version}_Linux";
sha256 = "0czyhsms0a0237d6h9b21n9p4nm4zkjanhhbvw26k6266g6c1nyr";
sha256 = "sha256-Q1SZSDTPGgBA/W/ZVYfTQsiP41RE1LJ+esQ3PK9EjIc=";
fetchSubmodules = true;
};
@ -49,7 +50,6 @@ stdenv.mkDerivation rec {
libmediainfo
libraw
libsodium
libtool
libuv
libzen
pcre-cpp
@ -80,9 +80,9 @@ stdenv.mkDerivation rec {
meta = with 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 ];
homepage = "https://mega.nz/cmd";
license = with licenses; [ bsd2 gpl3Only ];
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = with maintainers; [ lunik1 ];
};
}