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

                         
 
                  
                                                     
                                                                    

    
                          

          

                                                              

                                                                             
                                       

    
{ stdenv, fetchurl, mp4v2 }:

stdenv.mkDerivation rec {
  name = "faac-1.28";

  src = fetchurl {
    url = "mirror://sourceforge/faac/${name}.tar.gz";
    sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565";
  };

  buildInputs = [ mp4v2 ];

  meta = {
    description = "Open source MPEG-4 and MPEG-2 AAC encoder";
    homepage = http://www.audiocoding.com/faac.html;
    # Incompatible with GPL. Some changes to the base code, included in faac,
    # are under LGPL though.
    license = "unfree-redistributable";
  };
}