aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/fdk-aac
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2014-01-02 15:11:02 -0600
committerThomas Tuegel <ttuegel@gmail.com>2014-01-05 09:02:47 -0600
commite548166c446b3873b696a0861b57aefab9396c7c (patch)
treedd8b2b72ba46a79d07357fd175f40ef4957f94c2 /pkgs/development/libraries/fdk-aac
parenteb1e109b517ceda881d11e75b6c2184e3d255c90 (diff)
add fdk-aac-0.1.3
Diffstat (limited to 'pkgs/development/libraries/fdk-aac')
-rw-r--r--pkgs/development/libraries/fdk-aac/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/fdk-aac/default.nix b/pkgs/development/libraries/fdk-aac/default.nix
new file mode 100644
index 000000000000..a9c8b19dc501
--- /dev/null
+++ b/pkgs/development/libraries/fdk-aac/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl }:
+
+let version = "0.1.3";
+in
+stdenv.mkDerivation {
+ name = "fdk-aac-${version}";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/opencore-amr/fdk-aac/fdk-aac-${version}.tar.gz";
+ sha256 = "138c1l6c571289czihk0vlcfbla7qlac2jd5yyps5dyg08l8gjx9";
+ };
+
+ meta = with stdenv.lib; {
+ description = "A high-quality implementation of the AAC codec from Android";
+ homepage = "http://sourceforge.net/projects/opencore-amr/";
+ license = licenses.asl20;
+ platforms = platforms.linux;
+ };
+}