Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / opencore-amr / default.nix
blob38a50b75027bc32f2f4355f2e4dc5aaa8561efa5
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "opencore-amr";
5   version = "0.1.6";
6   src = fetchurl {
7     url = "mirror://sourceforge/opencore-amr/opencore-amr/opencore-amr-${version}.tar.gz";
8     hash = "sha256-SD60BhCI4rNLNY5HVAtdSVqWzUaONhBQ+uYVsYCdxKE=";
9   };
11   meta = {
12     homepage = "https://opencore-amr.sourceforge.io/";
13     description = "Library of OpenCORE Framework implementation of Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.
14     Library of VisualOn implementation of Adaptive Multi Rate Wideband (AMR-WB)";
15     license = lib.licenses.asl20;
16     maintainers = [ lib.maintainers.kiloreux ];
17   };