nixpkgs/pkgs/development/libraries/libogg/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

17 lines
328 B
Nix

{ stdenv, fetchurl, xz }:
stdenv.mkDerivation rec {
name = "libogg-1.3.0";
src = fetchurl {
url = "http://downloads.xiph.org/releases/ogg/${name}.tar.xz";
sha256 = "0jy79ffkl34vycnwfsj4svqsdg1lwy2l1rr49y8r4d44kh12a5r3";
};
buildNativeInputs = [ xz ];
meta = {
homepage = http://xiph.org/ogg/;
};
}