Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / vapoursynth-mvtools / default.nix
blob54d9bad1644f786e5e4fc9eaf68a4491a940a6ef
1 { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook,
2   vapoursynth, nasm, fftwFloat
3 }:
5 stdenv.mkDerivation rec {
6   pname = "vapoursynth-mvtools";
7   version = "23";
9   src = fetchFromGitHub {
10     owner  = "dubhater";
11     repo   = "vapoursynth-mvtools";
12     rev    = "v${version}";
13     sha256 = "0lngkvxnzn82rz558nvl96rvclrck07ja1pny7wcfixp9b68ppkn";
14   };
16   nativeBuildInputs = [ pkg-config autoreconfHook ];
17   buildInputs = [
18     nasm vapoursynth fftwFloat
19   ];
21   configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
23   meta = with lib; {
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 ];
28   };