nixpkgs/pkgs/development/libraries/faac/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

21 lines
553 B
Nix

{ 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 = stdenv.lib.licenses.unfreeRedistributable;
};
}