nixpkgs/pkgs/development/libraries/vapoursynth/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2017-11-05 10:08:36 -08:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
, zimg, libass, python3, libiconv
2018-07-03 08:03:12 -07:00
, ApplicationServices, nasm, x265
2018-02-27 02:32:55 -08:00
, ocrSupport ? false, tesseract ? null
, imwriSupport? true, imagemagick7 ? null
2016-08-26 20:36:45 -07:00
}:
2017-09-11 19:10:32 -07:00
assert ocrSupport -> tesseract != null;
assert imwriSupport -> imagemagick7 != null;
with stdenv.lib;
2016-08-26 20:36:45 -07:00
stdenv.mkDerivation rec {
name = "vapoursynth-${version}";
2018-02-27 02:32:55 -08:00
version = "R43";
2016-08-26 20:36:45 -07:00
src = fetchFromGitHub {
2017-02-04 10:56:22 -08:00
owner = "vapoursynth";
repo = "vapoursynth";
rev = version;
2018-02-27 02:32:55 -08:00
sha256 = "01yzxggjxr6fz3wj81z6vgp9m4jqddyk73i22kz2x620cpdgb9j9";
2016-08-26 20:36:45 -07:00
};
2017-11-05 10:08:36 -08:00
nativeBuildInputs = [ pkgconfig autoreconfHook nasm ];
2016-08-26 20:36:45 -07:00
buildInputs = [
2017-11-05 10:08:36 -08:00
zimg libass
2016-08-26 20:36:45 -07:00
(python3.withPackages (ps: with ps; [ sphinx cython ]))
2017-09-21 13:22:38 -07:00
] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ]
++ optional ocrSupport tesseract
2018-07-03 08:03:12 -07:00
++ optionals imwriSupport [ imagemagick7 x265 ];
2016-08-26 20:36:45 -07:00
configureFlags = [
"--disable-static"
2017-09-11 19:10:32 -07:00
(optionalString (!ocrSupport) "--disable-ocr")
(optionalString (!imwriSupport) "--disable-imwri")
2016-08-26 20:36:45 -07:00
];
2018-07-03 08:04:20 -07:00
enableParallelBuilding = true;
2017-09-11 19:10:32 -07:00
meta = with stdenv.lib; {
2016-08-26 20:36:45 -07:00
description = "A video processing framework with the future in mind";
2017-09-11 19:24:22 -07:00
homepage = http://www.vapoursynth.com/;
license = licenses.lgpl21;
2018-02-27 02:32:55 -08:00
platforms = platforms.x86_64;
2016-08-26 20:36:45 -07:00
maintainers = with maintainers; [ rnhmjoj ];
};
}