added faad2 and faac (deps of cinelerra)
svn path=/nixpkgs/trunk/; revision=13067
This commit is contained in:
parent
ef6cf67fc4
commit
07fc484a92
19
pkgs/development/libraries/faac/default.nix
Normal file
19
pkgs/development/libraries/faac/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "faac-1.26";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://downloads.sourceforge.net/faac/faac-1.26.tar.gz;
|
||||
sha256 = "0ld9d8mn3yp90japzkqkicmjcggi7d8y9gn7cl1jdsb74bif4j2b";
|
||||
};
|
||||
|
||||
preConfigure = "./bootstrap";
|
||||
|
||||
buildInputs =(with args; [autoconf automake libtool]);
|
||||
|
||||
meta = {
|
||||
description="open source MPEG-4 and MPEG-2 AAC encoder";
|
||||
homepage = http://www.audiocoding.com/faac.html;
|
||||
license = "LGPL";
|
||||
};
|
||||
}
|
19
pkgs/development/libraries/faad2/default.nix
Normal file
19
pkgs/development/libraries/faad2/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "faad2-2.6.1";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://downloads.sourceforge.net/faac/faad2-2.6.1.tar.gz;
|
||||
sha256 = "0p1870qfpaadphdfphbcfalf6d25r30k3y1f7sa7ly4vq3hc5lla";
|
||||
};
|
||||
|
||||
preConfigure = "./bootstrap";
|
||||
|
||||
buildInputs =(with args; [autoconf automake libtool]);
|
||||
|
||||
meta = {
|
||||
description="AAC audio decoding library";
|
||||
homepage = http://www.audiocoding.com/faad2.html;
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
@ -2700,6 +2700,14 @@ let
|
||||
ocaml = builtins.getAttr "3.10.0" ocaml_alts;
|
||||
};
|
||||
|
||||
faac = import ../development/libraries/faac {
|
||||
inherit fetchurl stdenv autoconf automake libtool;
|
||||
};
|
||||
|
||||
faad2 = import ../development/libraries/faad2 {
|
||||
inherit fetchurl stdenv autoconf automake libtool;
|
||||
};
|
||||
|
||||
fcgi = import ../development/libraries/fcgi {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user