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

stdenv.mkDerivation {
  name = "libvorbis-1.1.2";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/libvorbis-1.1.2.tar.gz;
    md5 = "37847626b8e1b53ae79a34714c7b3211";
  };
  buildInputs = [libogg];
}