Add flac and ogg vorbis to libsndfile

Updating libsndfile to the latest version while I'm at it.


svn path=/nixpkgs/trunk/; revision=24514
This commit is contained in:
Russell O'Connor 2010-10-28 14:00:41 +00:00
parent 7ec0584160
commit d953e6bb35

View file

@ -1,13 +1,15 @@
{stdenv, fetchurl}: {stdenv, fetchurl, flac, libogg, libvorbis, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libsndfile-1.0.21"; name = "libsndfile-1.0.23";
src = fetchurl { src = fetchurl {
url = "http://www.mega-nerd.com/libsndfile/files/${name}.tar.gz"; url = "http://www.mega-nerd.com/libsndfile/files/${name}.tar.gz";
sha256 = "0rzav3g865cr1s036r5pq0vx372g5cgvdkc2dlklgwqzani8743y"; sha256 = "0k9x4804gfh9d9zd4rm1v2izm8l716rzk4d6jlrjcf45b5sw7jal";
}; };
buildInputs = [pkgconfig flac libogg libvorbis];
meta = { meta = {
description = "Libsndfile, a C library for reading and writing files containing sampled sound"; description = "Libsndfile, a C library for reading and writing files containing sampled sound";