1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/libraries/vapoursynth-mvtools/default.nix

31 lines
786 B
Nix
Raw Normal View History

2016-08-27 04:38:57 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
vapoursynth, yasm, fftwFloat
}:
stdenv.mkDerivation rec {
name = "vapoursynth-mvtools-${version}";
2017-09-12 03:24:22 +01:00
version = "19";
2016-08-27 04:38:57 +01:00
src = fetchFromGitHub {
owner = "dubhater";
repo = "vapoursynth-mvtools";
2017-09-12 03:24:22 +01:00
rev = "v${version}";
sha256 = "1wjwf1lgfkqz87s0j251g625mw9xmx79zzgrjyhq3wlii73m6qwp";
2016-08-27 04:38:57 +01:00
};
nativeBuildInputs = [ pkgconfig ];
2016-08-27 04:38:57 +01:00
buildInputs = [
autoreconfHook
2016-08-27 04:38:57 +01:00
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 ];
};
}