nixpkgs/pkgs/development/libraries/vapoursynth-mvtools/default.nix

31 lines
784 B
Nix
Raw Normal View History

2016-08-26 20:38:57 -07:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
2018-09-03 06:09:20 -07:00
vapoursynth, nasm, fftwFloat
2016-08-26 20:38:57 -07:00
}:
stdenv.mkDerivation rec {
pname = "vapoursynth-mvtools";
2020-05-06 20:40:43 -07:00
version = "22";
2016-08-26 20:38:57 -07:00
src = fetchFromGitHub {
2018-09-03 06:09:20 -07:00
owner = "dubhater";
repo = "vapoursynth-mvtools";
2017-09-11 19:24:22 -07:00
rev = "v${version}";
2020-05-06 20:40:43 -07:00
sha256 = "11al56liaahkr3819iynq83k8n42wvijfv2ja5fsjdl6j4zfzpbr";
2016-08-26 20:38:57 -07:00
};
nativeBuildInputs = [ pkgconfig ];
2016-08-26 20:38:57 -07:00
buildInputs = [
autoreconfHook
2018-09-03 06:09:20 -07:00
nasm vapoursynth fftwFloat
2016-08-26 20:38:57 -07:00
];
2018-07-25 14:44:21 -07:00
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
2016-08-26 20:38:57 -07:00
meta = with stdenv.lib; {
description = "A set of filters for motion estimation and compensation";
homepage = "https://github.com/dubhater/vapoursynth-mvtools";
2016-08-26 20:38:57 -07:00
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
};
}