2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook }:
|
2018-03-07 11:04:29 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
version = "0.1.3";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "vo-amrwbenc-${version}";
|
|
|
|
version = "0.1.3";
|
|
|
|
buildInputs = [ autoreconfHook ];
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mstorsjo/vo-amrwbenc/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "85c79997ba7ddb9c95b5ddbe9ea032e27595390f3cbd686ed46a69e485cc053c";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/opencore-amr/";
|
2018-03-07 11:04:29 +00:00
|
|
|
description = "VisualOn Adaptive Multi Rate Wideband (AMR-WB) encoder";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = [ lib.maintainers.Esteth ];
|
|
|
|
platforms = lib.platforms.unix;
|
2018-03-07 11:04:29 +00:00
|
|
|
};
|
|
|
|
}
|