summary refs log tree commit diff
path: root/pkgs/development/libraries/libvorbis/default.nix
blob: 6a2385fe9505bc31d10cd14aaac919f3337a1276 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, libogg}:

stdenv.mkDerivation {
  name = "libvorbis-1.1.0";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libvorbis-1.1.0.tar.gz;
    md5 = "bb764aeabde613d1a424a29b1f15e7e6";
  };
  buildInputs = [libogg];
}