2021-05-03 20:48:10 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
2024-06-20 14:57:18 +00:00
|
|
|
, ffmpeg
|
2021-05-03 20:48:10 +00:00
|
|
|
, zlib
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ffms";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "5.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FFMS";
|
|
|
|
repo = "ffms2";
|
|
|
|
rev = version;
|
2024-06-20 14:57:18 +00:00
|
|
|
sha256 = "sha256-Ildl8hbKSFGh4MUBK+k8uYMDrOZD9NSMdPAWIIaGy4E=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-fPIC";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-03 20:48:10 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
preAutoreconf = ''
|
|
|
|
mkdir src/config
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
2024-06-20 14:57:18 +00:00
|
|
|
ffmpeg
|
2021-05-03 20:48:10 +00:00
|
|
|
zlib
|
|
|
|
];
|
2020-04-24 23:36:52 +00: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
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
homepage = "https://github.com/FFMS/ffms2";
|
2021-05-03 20:48:10 +00:00
|
|
|
description = "FFmpeg based source library for easy frame accurate access";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "ffmsindex";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|