24 lines
616 B
Nix
24 lines
616 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec{
|
|
pname = "vo-amrwbenc";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mstorsjo";
|
|
repo = "vo-amrwbenc";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-oHhoJAI47VqBGk9cO3G5oqnHpWxA2jnJs103MwcYj+w=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
meta = {
|
|
homepage = "https://sourceforge.net/projects/opencore-amr/";
|
|
description = "VisualOn Adaptive Multi Rate Wideband (AMR-WB) encoder";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.Esteth ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|