mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
fdk-aac: cleanup, format
This commit is contained in:
parent
6aef4cb18a
commit
14b2250e41
@ -1,8 +1,9 @@
|
||||
{ lib, stdenv, fetchurl
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, exampleSupport ? false # Example encoding program
|
||||
}:
|
||||
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fdk-aac";
|
||||
version = "2.0.2";
|
||||
@ -12,14 +13,13 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-yehjDPnUM/POrXSQahUg0iI/ibzT+pJUhhAXRAuOsi8=";
|
||||
};
|
||||
|
||||
configureFlags = [ ]
|
||||
++ optional exampleSupport "--enable-example";
|
||||
configureFlags = lib.optional exampleSupport "--enable-example";
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "A high-quality implementation of the AAC codec from Android";
|
||||
homepage = "https://sourceforge.net/projects/opencore-amr/";
|
||||
license = licenses.asl20;
|
||||
homepage = "https://sourceforge.net/projects/opencore-amr/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ codyopel ];
|
||||
platforms = platforms.all;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user