Formatting fixes

+8 -7
+8 -7
pkgs/development/libraries/faac/default.nix
··· 5 6 assert mp4v2Support -> (mp4v2 != null); 7 8 stdenv.mkDerivation rec { 9 name = "faac-${version}"; 10 version = "1.28"; ··· 14 sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565"; 15 }; 16 17 - configureFlags = [] 18 - ++ stdenv.lib.optional mp4v2Support "--with-mp4v2" 19 - ++ stdenv.lib.optional drmSupport "--enable-drm"; 20 21 - buildInputs = [] 22 - ++ stdenv.lib.optional mp4v2Support mp4v2; 23 24 - meta = with stdenv.lib; { 25 description = "Open source MPEG-4 and MPEG-2 AAC encoder"; 26 homepage = http://www.audiocoding.com/faac.html; 27 - license = stdenv.lib.licenses.unfree; 28 maintainers = with maintainers; [ codyopel ]; 29 platforms = platforms.all; 30 };
··· 5 6 assert mp4v2Support -> (mp4v2 != null); 7 8 + with stdenv.lib; 9 stdenv.mkDerivation rec { 10 name = "faac-${version}"; 11 version = "1.28"; ··· 15 sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565"; 16 }; 17 18 + configureFlags = [ ] 19 + ++ optional mp4v2Support "--with-mp4v2" 20 + ++ optional drmSupport "--enable-drm"; 21 22 + buildInputs = [ ] 23 + ++ optional mp4v2Support mp4v2; 24 25 + meta = { 26 description = "Open source MPEG-4 and MPEG-2 AAC encoder"; 27 homepage = http://www.audiocoding.com/faac.html; 28 + license = licenses.unfree; 29 maintainers = with maintainers; [ codyopel ]; 30 platforms = platforms.all; 31 };