nixpkgs/pkgs/development/libraries/ffms/default.nix

34 lines
894 B
Nix
Raw Normal View History

2017-03-12 21:24:05 +01:00
{ stdenv, fetchFromGitHub, zlib, ffmpeg, pkgconfig }:
2013-12-16 14:32:50 +01:00
stdenv.mkDerivation rec {
pname = "ffms";
version = "2.23";
2013-12-16 14:32:50 +01:00
2017-03-12 21:24:05 +01:00
src = fetchFromGitHub {
owner = "FFMS";
repo = "ffms2";
rev = version;
sha256 = "0dkz5b3gxq5p4xz0qqg6l2sigszrlsinz3skyf0ln4wf3zrvf8m5";
};
NIX_CFLAGS_COMPILE = "-fPIC";
2017-03-12 21:24:05 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib ffmpeg ];
2019-06-26 01:12:38 +02: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 21:24:05 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/FFMS/ffms2/;
description = "Libav/ffmpeg based source library for easy frame accurate access";
2017-03-12 21:24:05 +01:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2017-03-12 21:24:05 +01:00
platforms = platforms.unix;
};
}