about summary refs log tree commit diff
path: root/pkgs/development/libraries/libvorbis/default.nix
blob: 1cb26577162dd75703f9bf892ff823f857d337a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{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];
}