depot/third_party/nixpkgs/pkgs/development/libraries/vapoursynth-mvtools/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
778 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook,
vapoursynth, nasm, fftwFloat
}:
stdenv.mkDerivation rec {
pname = "vapoursynth-mvtools";
version = "23";
src = fetchFromGitHub {
owner = "dubhater";
repo = "vapoursynth-mvtools";
rev = "v${version}";
sha256 = "0lngkvxnzn82rz558nvl96rvclrck07ja1pny7wcfixp9b68ppkn";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [
nasm vapoursynth fftwFloat
];
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
meta = with lib; {
description = "Set of filters for motion estimation and compensation";
homepage = "https://github.com/dubhater/vapoursynth-mvtools";
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
};
}