mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
649 B
Nix
23 lines
649 B
Nix
{ lib, stdenv, fetchurl, autoreconfHook }:
|
|
|
|
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 = {
|
|
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;
|
|
};
|
|
}
|