summary refs log tree commit diff
path: root/pkgs/development/libraries/fdk-aac/default.nix
blob: a9c8b19dc501e8efdc0d033af45306dd5a2013b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
  };
}