From 18fbca33bb02366ef318252d9d1c0ac511b10b3c Mon Sep 17 00:00:00 2001 From: codyopel Date: Sun, 8 Feb 2015 17:02:17 -0500 Subject: [PATCH] faad2: refactor and add drm optional --- pkgs/development/libraries/faad2/default.nix | 21 ++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/faad2/default.nix b/pkgs/development/libraries/faad2/default.nix index 99177578c77..865bedf09ba 100644 --- a/pkgs/development/libraries/faad2/default.nix +++ b/pkgs/development/libraries/faad2/default.nix @@ -1,16 +1,25 @@ -{stdenv, fetchurl}: +{stdenv, fetchurl +, drmSupport ? false # Digital Radio Mondiale +}: -stdenv.mkDerivation { - name = "faad2-2.7"; +with stdenv.lib; +stdenv.mkDerivation rec { + name = "faad2-${version}"; + version = "2.7"; src = fetchurl { - url = mirror://sourceforge/faac/faad2-2.7.tar.bz2; + url = "mirror://sourceforge/faac/${name}.tar.bz2"; sha256 = "1db37ydb6mxhshbayvirm5vz6j361bjim4nkpwjyhmy4ddfinmhl"; }; + configureFlags = [] + ++ optional drmSupport "--with-drm"; + meta = { description = "An open source MPEG-4 and MPEG-2 AAC decoder"; - homepage = http://www.audiocoding.com/faad2.html; - license = stdenv.lib.licenses.gpl2; + homepage = http://www.audiocoding.com/faad2.html; + license = licenses.gpl2; + maintainers = with maintainers; [ codyopel ]; + platforms = platforms.all; }; }