added libvorbis libogg and flac

svn path=/nixpkgs/trunk/; revision=2063
This commit is contained in:
Rob Vermaas
2005-01-19 21:48:45 +00:00
parent 23b30cf548
commit cec2c24d85
4 changed files with 44 additions and 0 deletions
@@ -0,0 +1,11 @@
{stdenv, fetchurl, libogg}:
stdenv.mkDerivation {
name = "libvorbis-1.1.0";
src = fetchurl {
url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.0.tar.gz ;
md5 = "bb764aeabde613d1a424a29b1f15e7e6" ;
};
buildInputs = [libogg];
}