nixpkgs/pkgs/development/libraries/vapoursynth-mvtools/default.nix
2017-09-12 04:37:19 +02:00

30 lines
759 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
vapoursynth, yasm, fftwFloat
}:
stdenv.mkDerivation rec {
name = "vapoursynth-mvtools-${version}";
version = "19";
src = fetchFromGitHub {
owner = "dubhater";
repo = "vapoursynth-mvtools";
rev = "v${version}";
sha256 = "1wjwf1lgfkqz87s0j251g625mw9xmx79zzgrjyhq3wlii73m6qwp";
};
buildInputs = [
pkgconfig autoreconfHook
yasm vapoursynth fftwFloat
];
configureFlags = "--libdir=$(out)/lib/vapoursynth";
meta = with stdenv.lib; {
description = "A set of filters for motion estimation and compensation";
homepage = https://github.com/dubhater/vapoursynth-mvtools;
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
};
}