1 { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook,
2 vapoursynth, nasm, fftwFloat
5 stdenv.mkDerivation rec {
6 pname = "vapoursynth-mvtools";
9 src = fetchFromGitHub {
11 repo = "vapoursynth-mvtools";
13 sha256 = "0lngkvxnzn82rz558nvl96rvclrck07ja1pny7wcfixp9b68ppkn";
16 nativeBuildInputs = [ pkg-config autoreconfHook ];
18 nasm vapoursynth fftwFloat
21 configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
24 description = "A set of filters for motion estimation and compensation";
25 homepage = "https://github.com/dubhater/vapoursynth-mvtools";
26 license = licenses.gpl2;
27 maintainers = with maintainers; [ rnhmjoj ];