mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
c287776d9e
https://github.com/FFMS/ffms2/releases/tag/2.40 @tadeokondrak agreed to being a maintainer: https://github.com/NixOS/nixpkgs/pull/120846#issuecomment-827849034
52 lines
1,009 B
Nix
52 lines
1,009 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, ffmpeg
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ffms";
|
|
version = "2.40";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FFMS";
|
|
repo = "ffms2";
|
|
rev = version;
|
|
sha256 = "sha256-3bPxt911T0bGpAIS2RxBjo+VV84xW06eKcCj3ZAcmvw=";
|
|
};
|
|
|
|
NIX_CFLAGS_COMPILE = "-fPIC";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
preAutoreconf = ''
|
|
mkdir src/config
|
|
'';
|
|
|
|
buildInputs = [
|
|
ffmpeg
|
|
zlib
|
|
];
|
|
|
|
# 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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/FFMS/ffms2/";
|
|
description = "FFmpeg based source library for easy frame accurate access";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|