about summary refs log tree commit diff
path: root/pkgs/applications/audio/opus-tools/default.nix
blob: a543aa32eea542366ac3c706b56170222fb8af8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus}:

stdenv.mkDerivation rec {
  name = "opus-tools-0.1.6";
  src = fetchurl {
    url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
    sha256 = "1hd2ych34y3qy4rj4hd5cp29ixy891afizlsxphsfvfplk1dp1nc";
  };

  buildInputs = [ libogg libao pkgconfig libopus ];

  meta = {
    description = "Tools to work with opus encoded audio streams";
    homepage = http://www.opus-codec.org/;
    license = "BSD";
  };
}