summary refs log tree commit diff
path: root/pkgs/development/libraries/libvorbis/default.nix
blob: dac05837235434637d4a6a36058053432c45dc0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, multipleOutputs, libogg, xz }:

multipleOutputs rec {
  name = "libvorbis-1.3.3";

  src = fetchurl {
    url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
    sha256 = "1gby6hapz9njx4l9g0pndyk4q83z5fgrgc30mfwfgx7bllspsk43";
  };

  buildNativeInputs = [ xz ];
  propagatedBuildInputs = [ libogg ];

  outputs = [ "dev" "out" "doc" ];

  meta = {
    homepage = http://xiph.org/vorbis/;
  };
}