Merge pull request #28034 from kiloreux/libopencore
opencore-amr init at 0.1.5
This commit is contained in:
commit
8c86ce707e
@ -293,6 +293,7 @@
|
|||||||
khumba = "Bryan Gardiner <bog@khumba.net>";
|
khumba = "Bryan Gardiner <bog@khumba.net>";
|
||||||
KibaFox = "Kiba Fox <kiba.fox@foxypossibilities.com>";
|
KibaFox = "Kiba Fox <kiba.fox@foxypossibilities.com>";
|
||||||
kierdavis = "Kier Davis <kierdavis@gmail.com>";
|
kierdavis = "Kier Davis <kierdavis@gmail.com>";
|
||||||
|
kiloreux = "Kiloreux Emperex <kiloreux@gmail.com>";
|
||||||
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
||||||
knedlsepp = "Josef Kemetmüller <josef.kemetmueller@gmail.com>";
|
knedlsepp = "Josef Kemetmüller <josef.kemetmueller@gmail.com>";
|
||||||
konimex = "Muhammad Herdiansyah <herdiansyah@openmailbox.org>";
|
konimex = "Muhammad Herdiansyah <herdiansyah@openmailbox.org>";
|
||||||
|
20
pkgs/development/libraries/opencore-amr/default.nix
Normal file
20
pkgs/development/libraries/opencore-amr/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.1.5";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "opencore-amr-${version}";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://vorboss.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-${version}.tar.gz";
|
||||||
|
sha256 = "0hfk9khz3by0119h3jdwgdfd7jgkdbzxnmh1wssvylgnsnwnq01c";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://opencore-amr.sourceforge.io/;
|
||||||
|
description = "Library of OpenCORE Framework implementation of Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.
|
||||||
|
Library of VisualOn implementation of Adaptive Multi Rate Wideband (AMR-WB)";
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.kiloreux ];
|
||||||
|
};
|
||||||
|
}
|
@ -9633,6 +9633,8 @@ with pkgs;
|
|||||||
|
|
||||||
opencollada = callPackage ../development/libraries/opencollada { };
|
opencollada = callPackage ../development/libraries/opencollada { };
|
||||||
|
|
||||||
|
opencore-amr = callPackage ../development/libraries/opencore-amr { };
|
||||||
|
|
||||||
opencsg = callPackage ../development/libraries/opencsg { };
|
opencsg = callPackage ../development/libraries/opencsg { };
|
||||||
|
|
||||||
openct = callPackage ../development/libraries/openct { };
|
openct = callPackage ../development/libraries/openct { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user