nixpkgs/pkgs/development/libraries/libvorbis/default.nix
Lluís Batlle i Rossell d83e1b4b5d Updating libvorbis and libogg, and enabling by default libvorbis and libxvid on ffmpeg.
I think there are little drawbacks on that, whlie there are benefits.


svn path=/nixpkgs/trunk/; revision=32145
2012-02-08 19:54:16 +00:00

18 lines
383 B
Nix

{ stdenv, fetchurl, libogg, xz }:
stdenv.mkDerivation rec {
name = "libvorbis-1.3.3";
src = fetchurl {
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
sha256 = "1gby6hapz9njx4l9g0pndyk4q83z5fgrgc30mfwfgx7bllspsk43";
};
buildNativeInputs = [ xz ];
propagatedBuildInputs = [ libogg ];
meta = {
homepage = http://xiph.org/vorbis/;
};
}