a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
11 lines
253 B
Nix
11 lines
253 B
Nix
{stdenv, fetchurl, libogg}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvorbis-1.1.2";
|
|
src = fetchurl {
|
|
url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz;
|
|
md5 = "37847626b8e1b53ae79a34714c7b3211";
|
|
};
|
|
buildInputs = [libogg];
|
|
}
|