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

23 lines
666 B
Nix
Raw Normal View History

{ 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 = {
2018-06-27 20:12:57 +00:00
homepage = https://sourceforge.net/projects/opencore-amr/;
description = "VisualOn Adaptive Multi Rate Wideband (AMR-WB) encoder";
license = "stdenv.lib.licenses.apache";
2018-03-07 16:32:25 +00:00
maintainers = [ stdenv.lib.maintainers.Esteth ];
2018-03-19 15:55:06 +00:00
platforms = stdenv.lib.platforms.unix;
};
}