3
0
Fork 0
forked from mirrors/nixpkgs

vapoursynth-mvtools: init at 16

This commit is contained in:
rnhmjoj 2016-08-27 05:38:57 +02:00
parent 347fcb6a84
commit d7e5fbfb57
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
vapoursynth, yasm, fftwFloat
}:
stdenv.mkDerivation rec {
name = "vapoursynth-mvtools-${version}";
version = "16";
src = fetchFromGitHub {
owner = "dubhater";
repo = "vapoursynth-mvtools";
rev = "48959b868c18fa8066502f957734cbd5fb9762a0";
sha256 = "15xpqvfzhv0kcf3gyghni4flazi1mmj2iy6zw5834phqr52yg07z";
};
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 ];
};
}

View file

@ -16100,6 +16100,8 @@ in
vapoursynth = callPackage ../development/libraries/vapoursynth { };
vapoursynth-mvtools = callPackage ../development/libraries/vapoursynth-mvtools { };
vassal = callPackage ../games/vassal { };
vdrift = callPackage ../games/vdrift { };