lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #133780 from SuperSandro2000/fdk-aac

authored by

Sandro and committed by
GitHub
6fc5211e d527a12d

+8 -8
+8 -8
pkgs/development/libraries/fdk-aac/default.nix
··· 1 - { lib, stdenv, fetchurl 1 + { lib 2 + , stdenv 3 + , fetchurl 2 4 , exampleSupport ? false # Example encoding program 3 5 }: 4 6 5 - with lib; 6 7 stdenv.mkDerivation rec { 7 8 pname = "fdk-aac"; 8 9 version = "2.0.2"; ··· 12 13 sha256 = "sha256-yehjDPnUM/POrXSQahUg0iI/ibzT+pJUhhAXRAuOsi8="; 13 14 }; 14 15 15 - configureFlags = [ ] 16 - ++ optional exampleSupport "--enable-example"; 16 + configureFlags = lib.optional exampleSupport "--enable-example"; 17 17 18 - meta = { 18 + meta = with lib; { 19 19 description = "A high-quality implementation of the AAC codec from Android"; 20 - homepage = "https://sourceforge.net/projects/opencore-amr/"; 21 - license = licenses.asl20; 20 + homepage = "https://sourceforge.net/projects/opencore-amr/"; 21 + license = licenses.asl20; 22 22 maintainers = with maintainers; [ codyopel ]; 23 - platforms = platforms.all; 23 + platforms = platforms.all; 24 24 }; 25 25 }