Adding opus-tools.

At least a program that uses libopus.
This commit is contained in:
Lluís Batlle i Rossell 2012-09-25 20:08:01 +02:00
parent 664ee28936
commit 62c5eab5cd
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus}:
stdenv.mkDerivation rec {
name = "opus-tools-0.1.5";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
sha256 = "0184zfamg3qcjknk4liz4smws3mbv77gjhq2pn9xgcx9nw78srvn";
};
buildInputs = [ libogg libao pkgconfig libopus ];
meta = {
description = "Tools to work with opus encoded audio streams";
homepage = http://www.opus-codec.org/;
license = "BSD";
};
}

View file

@ -7473,6 +7473,8 @@ let
inherit (pkgs.kde4) kdelibs;
};
opusTools = callPackage ../applications/audio/opus-tools { };
pan = callPackage ../applications/networking/newsreaders/pan {
spellChecking = false;
};