update pulseaudio 0.9.23 -> 1.1

svn path=/nixpkgs/trunk/; revision=30279
This commit is contained in:
David Guibert
2011-11-06 20:03:07 +00:00
parent 29bdb369ab
commit 18fcb0f5f8
3 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
{ stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "json-c-0.9";
src = fetchurl {
url = "http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gz";
sha256 = "0xcl8cwzm860f8m0cdzyw6slwcddni4mraw4shvr3qgqkdn4hakh";
};
meta = {
homepage = "http://oss.metaparadigm.com/json-c/";
description = "A JSON implementation in C";
longDescription = "JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.";
};
}