nixpkgs/pkgs/development/libraries/vo-amrwbenc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
616 B
Nix
Raw Normal View History

2021-11-01 14:57:45 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2021-11-01 14:57:45 +00:00
stdenv.mkDerivation rec{
pname = "vo-amrwbenc";
version = "0.1.3";
2021-11-01 14:57:45 +00:00
src = fetchFromGitHub {
owner = "mstorsjo";
repo = "vo-amrwbenc";
rev = "v${version}";
sha256 = "sha256-oHhoJAI47VqBGk9cO3G5oqnHpWxA2jnJs103MwcYj+w=";
};
2021-11-01 14:57:45 +00:00
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;
};
}