My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/vo-amrwbenc/default.nix

23 lines
616 B

{ 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;
};
}