2017-03-12 13:24:05 -07:00
|
|
|
{ stdenv, fetchFromGitHub, zlib, ffmpeg, pkgconfig }:
|
2013-04-10 06:12:02 -07:00
|
|
|
|
2013-12-16 05:32:50 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ffms";
|
2019-03-01 20:54:45 -08:00
|
|
|
version = "2.23";
|
2013-12-16 05:32:50 -08:00
|
|
|
|
2017-03-12 13:24:05 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FFMS";
|
|
|
|
repo = "ffms2";
|
|
|
|
rev = version;
|
2019-03-01 20:54:45 -08:00
|
|
|
sha256 = "0dkz5b3gxq5p4xz0qqg6l2sigszrlsinz3skyf0ln4wf3zrvf8m5";
|
2013-04-10 06:12:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-fPIC";
|
|
|
|
|
2017-03-12 13:24:05 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ zlib ffmpeg ];
|
2013-04-10 06:12:02 -07:00
|
|
|
|
2019-06-25 16:12:38 -07:00
|
|
|
# ffms includes a built-in vapoursynth plugin, see:
|
|
|
|
# https://github.com/FFMS/ffms2#avisynth-and-vapoursynth-plugin
|
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/lib/vapoursynth
|
|
|
|
ln -s $out/lib/libffms2.so $out/lib/vapoursynth/libffms2.so
|
|
|
|
'';
|
|
|
|
|
2017-03-12 13:24:05 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/FFMS/ffms2/";
|
2013-04-10 06:12:02 -07:00
|
|
|
description = "Libav/ffmpeg based source library for easy frame accurate access";
|
2017-03-12 13:24:05 -07:00
|
|
|
license = licenses.mit;
|
2019-12-04 23:29:48 -08:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-03-12 13:24:05 -07:00
|
|
|
platforms = platforms.unix;
|
2013-04-10 06:12:02 -07:00
|
|
|
};
|
|
|
|
}
|