nixpkgs/pkgs/development/libraries/fdk-aac/default.nix

26 lines
692 B
Nix
Raw Normal View History

{ stdenv, fetchurl
, exampleSupport ? false # Example encoding program
}:
2014-01-02 21:11:02 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2014-01-02 21:11:02 +00:00
name = "fdk-aac-${version}";
version = "2.0.0";
2014-01-02 21:11:02 +00:00
src = fetchurl {
url = "mirror://sourceforge/opencore-amr/fdk-aac/${name}.tar.gz";
sha256 = "0v6rbyw9f9lpfvcg3v1qyapga5hqfnb3wp3x5yaxpwcgjw7ydmpp";
2014-01-02 21:11:02 +00:00
};
configureFlags = [ ]
++ optional exampleSupport "--enable-example";
meta = {
2014-01-02 21:11:02 +00:00
description = "A high-quality implementation of the AAC codec from Android";
homepage = https://sourceforge.net/projects/opencore-amr/;
license = licenses.asl20;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.all;
2014-01-02 21:11:02 +00:00
};
}