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);
with stdenv.lib;
stdenv.mkDerivation rec {
name = "faac-${version}";
version = "1.28";
@ -15,16 +16,16 @@ stdenv.mkDerivation rec {
};
configureFlags = [ ]
++ stdenv.lib.optional mp4v2Support "--with-mp4v2"
++ stdenv.lib.optional drmSupport "--enable-drm";
++ optional mp4v2Support "--with-mp4v2"
++ optional drmSupport "--enable-drm";
buildInputs = [ ]
++ stdenv.lib.optional mp4v2Support mp4v2;
++ optional mp4v2Support mp4v2;
meta = with stdenv.lib; {
meta = {
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
homepage = http://www.audiocoding.com/faac.html;
license = stdenv.lib.licenses.unfree;
license = licenses.unfree;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.all;
};