2005-01-19 21:48:45 +00:00
|
|
|
{stdenv, fetchurl, libogg}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-12-31 19:16:25 +00:00
|
|
|
name = "libvorbis-1.2.0";
|
2005-01-19 21:48:45 +00:00
|
|
|
src = fetchurl {
|
2007-12-31 19:16:25 +00:00
|
|
|
url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.bz2;
|
|
|
|
sha256 = "0nq62b8y2rhhgxxyiw6b4wchic61q5v649fdl8dd7090nxxcbx4y";
|
2005-01-19 21:48:45 +00:00
|
|
|
};
|
2009-01-20 09:50:05 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ libogg ];
|
2005-01-19 21:48:45 +00:00
|
|
|
}
|