libvmaf: init at 1.3.15
This commit is contained in:
parent
2bab43bb29
commit
1c2400c7d8
2 changed files with 30 additions and 0 deletions
28
pkgs/development/libraries/libvmaf/default.nix
Normal file
28
pkgs/development/libraries/libvmaf/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, autoconf, automake, intltool, libtool, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libvmaf";
|
||||
version = "1.3.15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "netflix";
|
||||
repo = "vmaf";
|
||||
rev = "v${version}";
|
||||
sha256="10kgcdf06hzhbl5r7zsllq88bxbyn282hfqx5i3hkp66fpq896d2";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoconf automake intltool libtool pkgconfig ];
|
||||
outputs = [ "out" "dev" ];
|
||||
doCheck = true;
|
||||
|
||||
makeFlags = [ "INSTALL_PREFIX=${placeholder "out"}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/Netflix/vmaf";
|
||||
description = "Perceptual video quality assessment based on multi-method fusion (VMAF).";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.cfsmp3 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -12561,6 +12561,8 @@ in
|
|||
|
||||
libvisual = callPackage ../development/libraries/libvisual { };
|
||||
|
||||
libvmaf = callPackage ../development/libraries/libvmaf { };
|
||||
|
||||
libvncserver = callPackage ../development/libraries/libvncserver {};
|
||||
|
||||
libviper = callPackage ../development/libraries/libviper { };
|
||||
|
|
Loading…
Reference in a new issue