summary refs log blame commit diff
path: root/pkgs/development/libraries/libvmaf/default.nix
blob: 9d4cf5c924f4479205119605bb480722ea898117 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                          


                         
                    




                         
                                                                    

    


                                      


                            

                                                 
                                                                                            
                               
                             
                                                            


    
{ stdenv, fetchFromGitHub, meson, ninja }:

stdenv.mkDerivation rec {
  pname = "libvmaf";
  version = "1.5.2";

  src = fetchFromGitHub {
    owner = "netflix";
    repo = "vmaf";
    rev = "v${version}";
    sha256 = "18w0z3w90fdbzsqaa4diwvq0xmvg0aiw4hi3aaa4pq0zgnb8g3mk";
  };

  sourceRoot = "source/libvmaf";

  nativeBuildInputs = [ meson ninja ];
  outputs = [ "out" "dev" ];
  doCheck = true;

  meta = with stdenv.lib; {
    homepage = "https://github.com/Netflix/vmaf";
    description = "Perceptual video quality assessment based on multi-method fusion (VMAF)";
    platforms = platforms.unix;
    license = licenses.asl20;
    maintainers = [ maintainers.cfsmp3 maintainers.marsam ];
  };

}