2016-08-27 05:38:57 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
|
2018-09-03 15:09:20 +02:00
|
|
|
vapoursynth, nasm, fftwFloat
|
2016-08-27 05:38:57 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "vapoursynth-mvtools";
|
2020-05-20 05:00:59 +02:00
|
|
|
version = "23";
|
2016-08-27 05:38:57 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-09-03 15:09:20 +02:00
|
|
|
owner = "dubhater";
|
|
|
|
repo = "vapoursynth-mvtools";
|
2017-09-12 04:24:22 +02:00
|
|
|
rev = "v${version}";
|
2020-05-20 05:00:59 +02:00
|
|
|
sha256 = "0lngkvxnzn82rz558nvl96rvclrck07ja1pny7wcfixp9b68ppkn";
|
2016-08-27 05:38:57 +02:00
|
|
|
};
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-08-27 05:38:57 +02:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
autoreconfHook
|
2018-09-03 15:09:20 +02:00
|
|
|
nasm vapoursynth fftwFloat
|
2016-08-27 05:38:57 +02:00
|
|
|
];
|
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
2016-08-27 05:38:57 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A set of filters for motion estimation and compensation";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/dubhater/vapoursynth-mvtools";
|
2016-08-27 05:38:57 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
};
|
|
|
|
}
|