mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
01d4e2fe33
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
89 lines
1.4 KiB
Nix
89 lines
1.4 KiB
Nix
{ stdenv
|
|
, autoconf
|
|
, automake
|
|
, c-ares
|
|
, cryptopp
|
|
, curl
|
|
, fetchFromGitHub
|
|
, ffmpeg_3
|
|
, freeimage
|
|
, gcc-unwrapped
|
|
, libmediainfo
|
|
, libraw
|
|
, libsodium
|
|
, libtool
|
|
, libuv
|
|
, libzen
|
|
, pcre-cpp
|
|
, pkgconfig
|
|
, readline
|
|
, sqlite
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "megacmd";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "meganz";
|
|
repo = "MEGAcmd";
|
|
rev = "${version}_Linux";
|
|
sha256 = "0czyhsms0a0237d6h9b21n9p4nm4zkjanhhbvw26k6266g6c1nyr";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
libtool
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [
|
|
c-ares
|
|
cryptopp
|
|
curl
|
|
ffmpeg_3
|
|
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 ];
|
|
};
|
|
}
|