cec2c24d85
svn path=/nixpkgs/trunk/; revision=2063
12 lines
257 B
Nix
12 lines
257 B
Nix
{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];
|
|
}
|