base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / va / vapoursynth-mvtools / package.nix
blob41ae1a11ccee9115a5300eadff0d46f62c442869
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   pkg-config,
6   autoreconfHook,
7   vapoursynth,
8   nasm,
9   fftwFloat,
12 stdenv.mkDerivation rec {
13   pname = "vapoursynth-mvtools";
14   version = "24";
16   src = fetchFromGitHub {
17     owner = "dubhater";
18     repo = "vapoursynth-mvtools";
19     rev = "v${version}";
20     hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ=";
21   };
23   nativeBuildInputs = [
24     pkg-config
25     autoreconfHook
26   ];
27   buildInputs = [
28     nasm
29     vapoursynth
30     fftwFloat
31   ];
33   configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
35   meta = with lib; {
36     description = "Set of filters for motion estimation and compensation";
37     homepage = "https://github.com/dubhater/vapoursynth-mvtools";
38     license = licenses.gpl2;
39     maintainers = with maintainers; [ rnhmjoj ];
40   };