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

stdenv.mkDerivation rec {
  name = "opusfile-0.4";
  src = fetchurl {
    url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
    sha256 = "0h4iwyqgid0cibqwzckz3r94qfp09099nk1cx5nz6i3cf08yldlq";
  };

  buildInputs = [ pkgconfig openssl libogg libopus ];

  meta = {
    description = "High-level API for decoding and seeking in .opus files";
    homepage = http://www.opus-codec.org/;
    license = "BSD";
  };
}