mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
vapoursynth: init at R33.1
This commit is contained in:
parent
735bbda892
commit
347fcb6a84
36
pkgs/development/libraries/vapoursynth/default.nix
Normal file
36
pkgs/development/libraries/vapoursynth/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
|
||||
glibc, zimg, imagemagick, libass, tesseract, yasm,
|
||||
python3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vapoursynth-${version}";
|
||||
version = "R33.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vapoursynth";
|
||||
repo = "vapoursynth";
|
||||
rev = "0d69d29abb3c4ba9e806958bf9c539bd6eff6852";
|
||||
sha256 = "1dbz81vgqfsb306d7891p8y25y7632y32ii3l64shr0jsq64vgsm";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig autoreconfHook
|
||||
zimg imagemagick libass glibc tesseract yasm
|
||||
(python3.withPackages (ps: with ps; [ sphinx cython ]))
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-imwri"
|
||||
"--disable-static"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A video processing framework with the future in mind";
|
||||
homepage = http://www.vapoursynth.com/;
|
||||
license = licenses.lgpl21;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ rnhmjoj ];
|
||||
};
|
||||
|
||||
}
|
@ -16098,6 +16098,8 @@ in
|
||||
|
||||
vapor = callPackage ../games/vapor { love = love_0_8; };
|
||||
|
||||
vapoursynth = callPackage ../development/libraries/vapoursynth { };
|
||||
|
||||
vassal = callPackage ../games/vassal { };
|
||||
|
||||
vdrift = callPackage ../games/vdrift { };
|
||||
|
Loading…
Reference in New Issue
Block a user