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