Merge pull request #36413 from Esteth/master
vo-amrwbenc: init at 0.1.3
This commit is contained in:
commit
b31f9c05ac
|
@ -63,6 +63,10 @@
|
||||||
github = "DmitryTsygankov";
|
github = "DmitryTsygankov";
|
||||||
name = "Dmitry Tsygankov";
|
name = "Dmitry Tsygankov";
|
||||||
};
|
};
|
||||||
|
Esteth = {
|
||||||
|
email = "adam.copp@gmail.com";
|
||||||
|
name = "Adam Copp";
|
||||||
|
};
|
||||||
FireyFly = {
|
FireyFly = {
|
||||||
email = "nix@firefly.nu";
|
email = "nix@firefly.nu";
|
||||||
github = "FireyFly";
|
github = "FireyFly";
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
{ 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 = "http://sourceforge.net/projects/opencore-amr/";
|
||||||
|
description = "VisualOn Adaptive Multi Rate Wideband (AMR-WB) encoder";
|
||||||
|
license = "stdenv.lib.licenses.apache";
|
||||||
|
maintainers = [ stdenv.lib.maintainers.Esteth ];
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5265,6 +5265,8 @@ with pkgs;
|
||||||
|
|
||||||
vncrec = callPackage ../tools/video/vncrec { };
|
vncrec = callPackage ../tools/video/vncrec { };
|
||||||
|
|
||||||
|
vo-amrwbenc = callPackage ../development/libraries/vo-amrwbenc { };
|
||||||
|
|
||||||
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
|
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
|
||||||
|
|
||||||
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
|
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
|
||||||
|
|
Loading…
Reference in New Issue