Formatting fixes

This commit is contained in:
William A. Kennington III 2015-02-08 13:41:20 -08:00
parent e546997042
commit ac99fefae1

View File

@ -5,6 +5,7 @@
assert mp4v2Support -> (mp4v2 != null); assert mp4v2Support -> (mp4v2 != null);
with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "faac-${version}"; name = "faac-${version}";
version = "1.28"; version = "1.28";
@ -14,17 +15,17 @@ stdenv.mkDerivation rec {
sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565"; sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565";
}; };
configureFlags = [] configureFlags = [ ]
++ stdenv.lib.optional mp4v2Support "--with-mp4v2" ++ optional mp4v2Support "--with-mp4v2"
++ stdenv.lib.optional drmSupport "--enable-drm"; ++ optional drmSupport "--enable-drm";
buildInputs = [] buildInputs = [ ]
++ stdenv.lib.optional mp4v2Support mp4v2; ++ optional mp4v2Support mp4v2;
meta = with stdenv.lib; { meta = {
description = "Open source MPEG-4 and MPEG-2 AAC encoder"; description = "Open source MPEG-4 and MPEG-2 AAC encoder";
homepage = http://www.audiocoding.com/faac.html; homepage = http://www.audiocoding.com/faac.html;
license = stdenv.lib.licenses.unfree; license = licenses.unfree;
maintainers = with maintainers; [ codyopel ]; maintainers = with maintainers; [ codyopel ];
platforms = platforms.all; platforms = platforms.all;
}; };