mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
vapoursynth-mvtools: init at 16
This commit is contained in:
parent
347fcb6a84
commit
d7e5fbfb57
29
pkgs/development/libraries/vapoursynth-mvtools/default.nix
Normal file
29
pkgs/development/libraries/vapoursynth-mvtools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue