2012-09-25 20:08:01 +02:00
|
|
|
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-03-20 20:28:26 +01:00
|
|
|
name = "opus-tools-0.1.6";
|
2012-09-25 20:08:01 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
|
2013-03-20 20:28:26 +01:00
|
|
|
sha256 = "1hd2ych34y3qy4rj4hd5cp29ixy891afizlsxphsfvfplk1dp1nc";
|
2012-09-25 20:08:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libogg libao pkgconfig libopus ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tools to work with opus encoded audio streams";
|
|
|
|
homepage = http://www.opus-codec.org/;
|
|
|
|
license = "BSD";
|
|
|
|
};
|
|
|
|
}
|