nixpkgs/pkgs/development/libraries/libvorbis/default.nix
Yury G. Kudryashov a7703662a4 Merged with trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=10145
2008-01-15 00:55:21 +00:00

11 lines
277 B
Nix

{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];
}