add fdk-aac-0.1.3
This commit is contained in:
parent
eb1e109b51
commit
e548166c44
19
pkgs/development/libraries/fdk-aac/default.nix
Normal file
19
pkgs/development/libraries/fdk-aac/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -913,6 +913,8 @@ let
|
|||||||
|
|
||||||
lprof = callPackage ../tools/graphics/lprof { };
|
lprof = callPackage ../tools/graphics/lprof { };
|
||||||
|
|
||||||
|
fdk_aac = callPackage ../development/libraries/fdk-aac { };
|
||||||
|
|
||||||
flvtool2 = callPackage ../tools/video/flvtool2 { };
|
flvtool2 = callPackage ../tools/video/flvtool2 { };
|
||||||
|
|
||||||
fontforge = lowPrio (callPackage ../tools/misc/fontforge { });
|
fontforge = lowPrio (callPackage ../tools/misc/fontforge { });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user