vo-aacenc: init at 0.1.3
Signed-off-by: Arthur Gautier <baloo@superbaloo.net>
This commit is contained in:
parent
0befb42b67
commit
c406d55e69
2 changed files with 21 additions and 0 deletions
19
pkgs/development/libraries/vo-aacenc/default.nix
Normal file
19
pkgs/development/libraries/vo-aacenc/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vo-aacenc";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/opencore-amr/fdk-aac/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-5Rp0d6NZ8Y33xPgtGV2rThTnQUy9SM95zBlfxEaFDzY=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "VisualOn AAC encoder library";
|
||||
homepage = "https://sourceforge.net/projects/opencore-amr/";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.baloo ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -8765,6 +8765,8 @@ in
|
|||
|
||||
vo-amrwbenc = callPackage ../development/libraries/vo-amrwbenc { };
|
||||
|
||||
vo-aacenc = callPackage ../development/libraries/vo-aacenc { };
|
||||
|
||||
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
|
||||
|
||||
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
|
||||
|
|
Loading…
Reference in a new issue