summary refs log tree commit diff
path: root/pkgs/development/libraries/opencore-amr/default.nix
blob: 38a50b75027bc32f2f4355f2e4dc5aaa8561efa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "opencore-amr";
  version = "0.1.6";
  src = fetchurl {
    url = "mirror://sourceforge/opencore-amr/opencore-amr/opencore-amr-${version}.tar.gz";
    hash = "sha256-SD60BhCI4rNLNY5HVAtdSVqWzUaONhBQ+uYVsYCdxKE=";
  };

  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 = lib.licenses.asl20;
    maintainers = [ lib.maintainers.kiloreux ];
  };
}