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

stdenv.mkDerivation {
  name = "libvorbis-1.2.0";
  src = fetchurl {
    url = http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.bz2;
    sha256 = "0nq62b8y2rhhgxxyiw6b4wchic61q5v649fdl8dd7090nxxcbx4y";
  };
  buildInputs = [libogg];
}