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

26 lines
691 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}";
2017-01-24 22:49:34 +00:00
version = "0.1.5";
2014-01-02 21:11:02 +00:00
src = fetchurl {
url = "mirror://sourceforge/opencore-amr/fdk-aac/${name}.tar.gz";
2017-01-24 22:49:34 +00:00
sha256 = "1msdkcf559agmpycd4bk0scm2s2h9jyzbnnw1yrfarxlcwm5jr11";
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 = http://sourceforge.net/projects/opencore-amr/;
license = licenses.asl20;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.all;
2014-01-02 21:11:02 +00:00
};
}