nixpkgs/pkgs/development/libraries/ffmpeg-sixel/default.nix

38 lines
900 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, libsixel, yasm
2016-06-11 22:15:13 +00:00
}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2016-06-11 22:15:13 +00:00
pname = "ffmpeg-sixel";
2016-06-11 22:15:13 +00:00
version = "nightly-2.3.x";
src = fetchFromGitHub {
owner = "saitoha";
repo = "FFmpeg-SIXEL";
rev = "8566fdb8b7516b54aed58f329dc216e06fc10052";
sha256 = "00s2lggfdj2ibpngpyqqg7360p7yb69ys1ppg59yvv0m0mxk5x3k";
};
nativeBuildInputs = [ pkgconfig ];
2016-06-11 22:15:13 +00:00
buildInputs = [
libsixel
yasm
];
configurePhase = ''
./configure --enable-libsixel --prefix=$out
'';
postInstall = ''
mv $out/bin/ffmpeg $out/bin/ffmpeg-sixel
'';
meta = with stdenv.lib; {
description = "A complete, cross-platform solution to record, convert and stream audio and video, extended to support console graphics";
homepage = "http://www.ffmpeg.org/";
2016-06-11 22:15:13 +00:00
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ vrthra ];
};
}