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